标签:void 执行 model test ret out system tin public
/**
*
字符串:方法返回字符串可以指定逻辑视图名,通过视图解析器解析为物理视图地址
void: 我们可以使用Servlet 原始 API 可以作为控制器中方法的参数:
ModelAndView 是 SpringMVC 为我们提供的一个对象,该对象也可以用作控制器方法的返回值
*/
@Controller
@RequestMapping("/account")
public class AccountController {
@RequestMapping("/testIndex")
public String testIndex(){
System.out.println("执行......testIndex......");
return "testIndex";
}
返回值分类 (void、string、 modelAndView)
标签:void 执行 model test ret out system tin public
原文地址:https://www.cnblogs.com/jock766/p/13289911.html