注释@RestController ,默认类中的方法都会以json的格式返回
@RequestMapping是接口名
image.png
@GetMapping是一个组合注解,是@RequestMapping(method = RequestMethod.GET)的缩写。
@PostMapping是一个组合注解,是@RequestMapping(method = RequestMethod.POST)的缩写。
注释@RestController ,默认类中的方法都会以json的格式返回
本文标题:SpringBoot注释
本文链接:https://www.haomeiwen.com/subject/igkwkltx.html
网友评论