1. 程式人生 > >@GetMapping/@PostMapping和@RequestMapping的區別

@GetMapping/@PostMapping和@RequestMapping的區別

@GetMapping是@RequsetMapping(method = RequestMethod.GET)的縮寫,只接受get方式的請求

@PostMapping是@RequestMapping(method = RequestMethod.POST)的縮寫,只接受post方式的請求

 

@RestController相當於@[email protected]

@RestConller註解的方法無法返回jsp介面,只會返回return中的內容;返回json資料/xml/自定義media type

@Controller+檢視解析器InternalResourceViewResolver