@Controller和@RestController的區別

weixin_46460392發表於2020-10-09

@Controller和@RestController的區別
@RestController註解相當於@ResponseBody 與@Controller合在一起的作用。

  1. 如果只是使用@RestController註解Controller,則Controller中的方法無法返回jsp頁面,或者html,配置的檢視解析器 InternalResourceViewResolver不起作用,返回的內容就是Return 裡的內容。

  2. 如果需要返回到指定頁面,則需要用 @Controller配合檢視解析器InternalResourceViewResolver才行。 如果需要返回JSON,XML或自定義mediaType內容到頁面,則需要在對應的方法上加上@ResponseBody註解。

相關文章