注解@RestController和@Controller的不同之处

这几天做一个基于springBoot的项目,发现的这个问题:

1.@RestController。@RestController是@ResponseBody + @Controller结合,当在当在controller上用该注解,返回的是具体内容,不是页面。

2.@Controller。当在controller上,用上该注解返回的是页上面。

参考博客:

https://blog.csdn.net/weixin_36328444/article/details/82288602

猜你喜欢

转载自blog.csdn.net/liuzhongyefirst/article/details/88613615