@RestController 是 @Controller 和 @ResponseBody 的集合,如果只是使用 @RestController 注解,则 Controller 中的方法无法返回 jsp 页面,或者 html,配置的视图解析器 InternalResourceViewResolver 不起作用,返回的内容就是 Return 里的内容
@RestController
最新推荐文章于 2025-04-07 17:28:57 发布
@RestController 是 @Controller 和 @ResponseBody 的集合,如果只是使用 @RestController 注解,则 Controller 中的方法无法返回 jsp 页面,或者 html,配置的视图解析器 InternalResourceViewResolver 不起作用,返回的内容就是 Return 里的内容