@RestController相当于@ResponseBody和@Controller合在一起的作用
- 如果只使用@RestController,则Controller中的方法无法解析返回的jsp页面或html,配置的视图解析器不起作用,则无法解析jsp、html页面,返回的内容就是Return里的内容。
- 如果需要返回到指定页面,则需要用@Controller配合视图解析器InternalResourceViewrResolver才行。
- 如果需要返回json、xml或自定义mediaType内容到页面,则需要在对应的方法上加上@ResponseBody注解。