1. Controller, RestController的共同点
都是用来表示Spring某个类的是否可以接收HTTP请求
2. Controller, RestController的不同点
@Controller标识一个Spring类是Spring MVC controller处理器
@RestController: a convenience annotation that does nothing more than adding [email protected] and @ResponseBody annotations。 @[email protected]@ResponseBody的结合体,两个标注合并起来的作用。
原创文章,作者:Maggie-Hunter,如若转载,请注明出处:https://blog.ytso.com/15707.html