Spring Boot学习笔记(五) -Controller中常用注解
@RestController
@RestController相当于@Controller+@ResponseBody注解
如果使用@RestController注解Controller中的方法无法返回页面,相当于在方法上面自动加了@RespinseBody注解,所以没办法跳转并传输数据到另一个页面,所以InternalResourceViewResolver也不起作用,返回的内容就是Return里的内容。
@GetMapping
@GetMapping注解是@RequestMapping(method = RequestMethod.GET)的缩写。
@PostMapping
@PostMapping注解是@RequestMapping(method = RequestMethod.POST)的缩写。
@PutMapping
@PutMapping注解是@RequestMapping(method = RequestMethod.PUT)的缩写。
@DeleteMapping
@DeleteMapping注解是@RequestMapping(method = RequestMethod.DELETE)的缩写。
案例
1 | package com.xiezhenyu.controller; |
原文作者: 谢振瑜
原文链接: https://Xiezhenyu98.github.io/2020/04/06/Spring Boot学习笔记(五) -Controller中常用注解/
版权声明: 转载请注明出处(必须保留作者署名及链接)