您的位置:

深入解析PostMapping

一、PostMapping和PutMapping的区别

PostMapping和PutMapping都是用来处理HTTP POST请求的注解,但是两者的区别在于:

1、PutMapping注解用于更新资源的请求。

2、PostMapping注解用于向服务端提交数据的请求。

3、PutMapping注解的请求体数据更新资源,而PostMapping注解的请求体数据创建了新的资源。

二、@PostMapping注解

@PostMapping是Spring MVC的注解之一,它可以用来处理客户端发来的POST请求,通常用于处理表单提交数据。与之对应的注解还有@GetMapping、@PutMapping、@DeleteMapping、@PatchMapping和@RequestMapping。

@PostMapping注解的常用参数有value、path、name、params、consumes、produces、headers、defaultValue等。

其中value和path用于指定请求路径,params用于指定请求参数,consumes用于指定请求的Content-Type,而produces用于指定响应的Content-Type。

    @PostMapping(value = "/createUser")
    public ResponseEntity createUser(@RequestBody User user) {
        userService.createUser(user);
        return ResponseEntity.ok().build();
    }

三、PostMapping和RequestMapping的区别

RequestMapping是一个用来处理请求的注解,它可以用来处理GET、POST、DELETE、PUT等形式的请求。而PostMapping只能用于处理POST请求。

RequestMapping的常用参数同样可以用于@PostMapping注解上面,如value、path、name、params、consumes、produces、headers、defaultValue等。

PostMapping除了作为补充以外,更加专注于方法处理POST请求。相比之下,RequestMapping则是全能的注解。

    @RequestMapping(value = "/createUser", method = RequestMethod.POST)
    public ResponseEntity createUser(@RequestBody User user) {
        userService.createUser(user);
        return ResponseEntity.ok().build();
    }

四、PostMapping的produces属性

PostMapping的produces属性用于限定请求的Content-Type。如果请求的Content-Type不符合produces属性的类型,就会返回406(Not Acceptable)错误码。

    @PostMapping(value = "/createUser", produces = MediaType.APPLICATION_JSON_VALUE)
    public ResponseEntity createUser(@RequestBody User user) {
        userService.createUser(user);
        return ResponseEntity.ok().build();
    }

五、PostMapping和SQL语句

PostMapping通常与SQL语句配合使用,用于对数据库进行增、删、改、查等操作。

    @PostMapping(value = "/createUser")
    public int createUser(@RequestParam String name, @RequestParam String password,
                          @RequestParam Integer age) {
        User user = new User(name, password, age);
        return userMapper.createUser(user);
    }

六、安卓中的@PostMapping

在Android中,可以使用Retrofit进行网络请求。而Retrofit底层使用的就是OkHttp,OkHttp还提供了对应的PostMapping:

    @POST("login")
    fun login(@Body loginReq: LoginReq): Call

  

七、Mapper和Repository的区别

Mapper和Repository都与数据库操作相关,但是两者的区别在于:

1、Mapper通常用于自定义SQL语句进行增、删、改、查等操作,是MyBatis的精髓所在。

2、Repository则是更加通用的一种仓库模式,它不仅可以操作SQL数据库,也可以操作NoSQL数据库、文件、缓存等多种数据源。

所以,如果仅仅是操作SQL数据库,使用Mapper更加合适;如果要操作多种数据源,则建议使用Repository。