Springboot在Controller中常用注解
@RestController
@RestController相当于@Controller+@ResponseBody注解
如果使用@RestController注解,Controller中的方法将无法返回页面,相当于方法上自动加了@ResponseBody注解
所以没法跳转并传输数据到另一个页面,所以InternalResourceViewResolver也不起作用,返回的就是Return里的内容
@GetMapping
@GetMapping注解是@RequestMapping(method=RequestMethod.GET)的缩写
@PostMapping
@PosttMapping注解是@RequestMapping(method=RequestMethod.POST)的缩写
@PutMapping
@PutMapping注解是@RequestMapping(method=RequestMethod.PUT)的缩写
@DeleteMapping
@DeleteMapping注解是@RequestMapping(method=RequestMethod.DELETE)的缩写