天天看點

@Controller @RestController

知識點:@RestController注解相當于@ResponseBody + @Controller合在一起的作用。

1) 如果隻是使用@RestController注解Controller,則Controller中的方法無法傳回jsp頁面,或者html,配置的視圖解析器 InternalResourceViewResolver不起作用,傳回的内容就是Return 裡的内容。

2) 如果需要傳回到指定頁面,則需要用 @Controller配合視圖解析器InternalResourceViewResolver才行。

   如果需要傳回JSON,XML或自定義mediaType内容到頁面,則需要在對應的方法上加上@ResponseBody注解。

例如:

1.使用@Controller 注解,在對應的方法上,視圖解析器可以解析return 的jsp,html頁面,并且跳轉到相應頁面

若傳回json等内容到頁面,則需要加@ResponseBody注解