知識點(diǎn):@RestController注解相當(dāng)于@ResponseBody + @Controller合在一起的作用臣镣。
- 如果只是使用@RestController注解Controller,則Controller中的方法無法返回jsp頁面,或者h(yuǎn)tml蔫饰,配置的視圖解析器 InternalResourceViewResolver不起作用,返回的內(nèi)容就是Return 里的內(nèi)容愉豺。
- 如果需要返回到指定頁面篓吁,則需要用 @Controller配合視圖解析器InternalResourceViewResolver才行。
如果需要返回JSON蚪拦,XML或自定義mediaType內(nèi)容到頁面杖剪,則需要在對應(yīng)的方法上加上@ResponseBody注解冻押。
例如:
1.使用@Controller 注解,在對應(yīng)的方法上盛嘿,視圖解析器可以解析return 的jsp,html頁面洛巢,并且跳轉(zhuǎn)到相應(yīng)頁面
若返回json等內(nèi)容到頁面,則需要加@ResponseBody注解
@CrossOrigin
@Controller
public class FileUploadController {
//跳轉(zhuǎn)到上傳文件的頁面
@RequestMapping(value="/gouploadimg", method = RequestMethod.GET)
public String goUploadImg() {
//跳轉(zhuǎn)到 templates 目錄下的 uploadimg.html
return "uploadimg";
}
//處理文件上傳
@RequestMapping(value="/testuploadimg", method = RequestMethod.POST)
public @ResponseBody String uploadImg(@RequestParam("file") MultipartFile file,
HttpServletRequest request) {
System.out.println("調(diào)用文件上傳方法");
String contentType = file.getContentType();
String fileName = file.getOriginalFilename();
2.@RestController注解次兆,相當(dāng)于@Controller+@ResponseBody兩個(gè)注解的結(jié)合稿茉,返回json數(shù)據(jù)不需要在方法前面加@ResponseBody注解了,但使用@RestController這個(gè)注解芥炭,就不能返回jsp,html頁面漓库,視圖解析器無法解析jsp,html頁面
@CrossOrigin
@RestController /* @Controller + @ResponseBody*/
public class HospitalController {
//注入Service服務(wù)對象
@Autowired
private HospitalServicehospitalService;
/**
* 查詢所有醫(yī)院信息(未分頁)
*/
@RequestMapping(value ="findAllHospital",method = RequestMethod.GET)
public List findAllHospital(){
List hospitalList=hospitalService.findAllHospital();
return hospitalList;
}