美文网首页
SpringBoot注释

SpringBoot注释

作者: 程南swimming | 来源:发表于2021-04-09 17:52 被阅读0次

注释@RestController ,默认类中的方法都会以json的格式返回

image.png
@RequestMapping是接口名
image.png
@GetMapping是一个组合注解,是@RequestMapping(method = RequestMethod.GET)的缩写。
@PostMapping是一个组合注解,是@RequestMapping(method = RequestMethod.POST)的缩写。

相关文章

网友评论

      本文标题:SpringBoot注释

      本文链接:https://www.haomeiwen.com/subject/igkwkltx.html