@Controller 和 @RestController的區別

guile發表於2019-02-14

使用 @RestController 註解,Controller 中的方法就無法返回 jsp 頁面或者 html 頁面,返回的內容就是 return 裡的內容。

用 @Controller 註解,可以返回到指定頁面。如果需要返回 json 到頁面,那就需要在對應的方法上加上 @ResponseBody 註解。

 

相關文章