@RestController和@Controller的区别
2020-03-09 本文已影响0人
Mr_Editor
- 注:@RestController注解相当于@ResponseBody + @Controller合在一起的作用
- 如果使用@RestController注解Controller类,则类中方法无法返回html页面,然会内容是return的内容,多用与返回json个数数据
- 如果需要返回指定的界面,如return "hello";想要返回hello.html,则需要在类上使用注解@Controller。