RestController和Controller区别

RestController注解相当于Controller和ResponseBody两个注解合在一起使用

  • 仅RestController注解使用可以返回Json对象,不能解析return的jsp,html界面,无法跳转到相应界面,return返回的内容是什么就是什么
  • Controller注解可以解析jsp,html界面,可以跳转到相应界面,例如Controller注解的方法:return “MySpringBoot”,就会跳转到

MySpringBoot.jsp或者MySpringBoot.html页面。

猜你喜欢

转载自blog.csdn.net/zzu_shuainanhai/article/details/91126708