@GetMapping/@PostMapping和@RequestMapping的区别

@GetMapping是@RequsetMapping(method = RequestMethod.GET)的缩写,只接受get方式的请求

@PostMapping是@RequestMapping(method = RequestMethod.POST)的缩写,只接受post方式的请求

@RestController相当于@ResponseBody+@Controller

@RestConller注解的方法无法返回jsp界面,只会返回return中的内容;返回json数据/xml/自定义media type

@Controller+视图解析器InternalResourceViewResolver

猜你喜欢

转载自blog.csdn.net/qq_36380180/article/details/82804144