@RestController
This code uses SPRing 4’s new @RestController annotation, which marks the class as a controller where every method returns a domain object instead of a view. It’s shorthand for @Controller and @ResponseBody rolled together.
看了Spring的官方文檔里面是這樣說的,大致意思是這是spring的新注解,使用這個標(biāo)志這個類作為控制器,沒個方法返回一個域?qū)ο螅皇侵付ǖ揭粋€視圖,這個新式注解是@Controller和@ResponseBody的結(jié)合體
使用@RestController注意
如果在類上面注解了這個類,那么此Controller中的方法無法使用InternalResourceViewResolver視圖解析器,如果配置的視圖地址,則會返回字符串 例如:return “l(fā)ogin” 則不會跳轉(zhuǎn)到login登錄頁面,則會返回字符串login
如果想返回指定頁面那就只能使用@Controller這個標(biāo)志作為控制器,配合視圖解析器InternalResourceViewResolver才行。
新聞熱點(diǎn)
疑難解答