美文网首页
@PostMapping,@GetMapping,@PutMap

@PostMapping,@GetMapping,@PutMap

作者: 学习微站 | 来源:发表于2022-11-29 12:53 被阅读0次
    • @GetMapping是一个组合注解,是@RequestMapping(method = RequestMethod.GET)的缩写。该注解将HTTP Get 映射到特定的处理方法上。

    • 同理PostMapping也是一个组合注解,是@RequestMapping(method = RequestMethod.POST)的缩写

    @PostMapping,@GetMapping最主要的区别是

    @PostMapping一般处理对象的findUser

    @GetMapping一般处理单个id,比如findbyId

    @PutMapper一般用在编辑,也可以只用上面两种

    常用注解总结

    一级:频繁常用
    @RequestMapping
    @GetMapping
    @PostMapping
    @RestController
    @Service
    @Mapper
    @Repository
    @Slf4j
    @Compent
    @ResponseBody
    @PathVariable
    @RequestParam
    @Bean
    @Before
    @After
    @Transactional
    @Configuration
    @Resource
    @Autowired
    @SpringBootApplication
    @SpringBootTest
    @Test
    @Override
    @Value

    二级:经常用
    @PutMapping
    @DeleteMapping @MapperScan

    三级:一般用
    @Import 引用
    @CofigurationProperties @EnableConfiguratioProperties

    四级:很少用 @Mapping

    文章知识点与官方知识档案匹配,可进一步学习相关知识

    本文使用 文章同步助手 同步

    相关文章

      网友评论

          本文标题:@PostMapping,@GetMapping,@PutMap

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