前提:Controller 层上面的注解是@Controller;如果是@RestController 情况就不同了
讨论:返回json 数据 还是view视图? 结论:
代码示例如下:
// 返回界面
@GetMapping("/index")
public String index1() {
return "index";
}
// 返回json对象
@ResponseBody
@GetMapping("/json")
public String json() {
return "json";
}
// 返回界面 或json
// 如果用到@ResponseBody 还想返回视图,那必须要用 ModelAndView 对象
@ResponseBody
@GetMapping("/json")
public Object view(boolean is) {
if(is){
ModelAndView mv=new ModelAndView();
mv.setViewName("/index");
return mv;
}
return "json";
}