@Controller和@RestController的區別?

@RestController註解至關於@ResponseBody + @Controller合在一塊兒的做用

1)若是隻是使用@RestController註解Controller,則Controller中的方法沒法返回jsp頁面,配置的視圖解析器InternalResourceViewResolver不起做用,返回的內容就是Return 裏的內容。html

例如:原本應該到success.jsp頁面的,則其顯示success.json

2)若是須要返回到指定頁面,則須要用 @Controller配合視圖解析器InternalResourceViewResolver才行。
3)若是須要返回JSON,XML或自定義mediaType內容到頁面,則須要在對應的方法上加上@ResponseBody註解。app

 

例如:jsp

1.使用@Controller 註解,

在對應的方法上,視圖解析器能夠解析return 的jsp,html頁面,而且跳轉到相應頁面spa

若返回json等內容到頁面,則須要加@ResponseBody註解code

@CrossOrigin
@Controller
public class FileUploadController {

//跳轉到上傳文件的頁面
@RequestMapping(value="/gouploadimg", method = RequestMethod.GET)
public String goUploadImg() {
//跳轉到 templates 目錄下的 uploadimg.html
return "uploadimg";
}

//處理文件上傳
@RequestMapping(value="/testuploadimg", method = RequestMethod.POST)
public @ResponseBody String uploadImg(@RequestParam("file") MultipartFile file,
HttpServletRequest request) {
System.out.println("調用文件上傳方法");
String contentType = file.getContentType();
String fileName = file.getOriginalFilename();

 

  2.@RestController註解

至關於@Controller+@ResponseBody兩個註解的結合,返回json數據不須要在方法前面加@ResponseBody註解了,但使用@RestController這個註解,就不能返回jsp,html頁面,視圖解析器沒法解析jsp,html頁面htm

@CrossOrigin
@RestController /* @Controller + @ResponseBody*/
public class HospitalController {

    //注入Service服務對象
    @Autowired
    private HospitalService hospitalService;

    /**
     * 查詢全部醫院信息(未分頁)
     */

    @RequestMapping(value = "findAllHospital",method = RequestMethod.GET)
    public  List<Hospital> findAllHospital(){
        List<Hospital> hospitalList= hospitalService.findAllHospital();
        return hospitalList;
    }

 

歡迎你們關注公衆號,不定時乾貨,只作有價值的輸出對象

做者:Dawnzhang 
出處:https://www.cnblogs.com/clwydjgs/
版權:本文版權歸做者
轉載:歡迎轉載,但未經做者贊成,必須保留此段聲明;必須在文章中給出原文鏈接;不然必究法律責任blog

相關文章
相關標籤/搜索