当前位置:主页 > java教程 > @DeleteMapping注解无法获取参数值

SpringMVC @DeleteMapping注解无法获取参数值问题及解决

发布:2023-03-05 17:30:01 59


给网友们整理相关的编程文章,网友莘天翰根据主题投稿了本篇教程内容,涉及到SpringMVC @DeleteMapping注解、@DeleteMapping注解参数值、SpringMVC 注解、@DeleteMapping注解无法获取参数值相关内容,已被840网友关注,内容中涉及的知识点可以在下方直接下载获取。

@DeleteMapping注解无法获取参数值

最近在试试使用springboot编写一个demo进行测试,测试过程中发现@DeleteMapping注解有一些问题,现在汇总如下~

示例1

问题:无法获取参数id的值

@DeleteMapping(value = "userinfo")
public void deleteUserinfo(Integer id) {
    System.out.println("========= id : " + id);
    this.dao.delete(id);
}

在spring-mvc中,经常使用上面的方法获取参数,无论是get还是post方法都可以获取的到,但是在springboot中这种写法得到的id却是null,然后方法就抛出异常,因为delete方法的参数值不能为null;为什么这种方式获取不到参数值呢?

示例2

问题:无法执行方法,无法获取参数值

@DeleteMapping(value = "userinfo3")
public void deleteUserinfo3(@RequestParam("id") int id) {
    System.out.println("========= id : " + id);
    this.dao.delete(id);
}

在postman中进行的测试,无论是 form-data还是x-www-form-unlencoded类型,都无法进入方法体,连第一句打印都不执行,直接报400的错误,错误信息如下

{
  "timestamp": 1505653583069,
  "status": 400,
  "error": "Bad Request",
  "exception": "org.springframework.web.bind.MissingServletRequestParameterException",
  "message": "Required int parameter 'id' is not present",
  "path": "/userinfo/userinfo3"
}

很不理解,put方法可以通过修改x-www-form-unlencoded方式,然后通过@RequestParam方法获取参数值,但是delee却不行,不知为何?

示例3

问题:获取不到参数值

@DeleteMapping(value = "userinfo4")
public void deleteUserinfo4(Userinfo userinfo) {
    System.out.println(userinfo);
    this.dao.delete(userinfo);
}

在post方法中可以使用entity来接受参数,但是delete方法却不行;上面方法虽然可以执行到方法里面,第一行打印也有内容,但是userinfo对象是空的,没有获取到任何参数,不知为何!

后台日志如下:

{"age":0,"id":0}
Hibernate: insert into userinfo (age, cup_size, name) values (?, ?, ?)
Hibernate: delete from userinfo where id=?

极其匪夷所思,我只是执行了一个delete操作,为什么日志会打印insert into 语句呢?

示例4

问题 : 无法获取参数值,方法直接进不到方法体中

@DeleteMapping(value = "userinfoMap")
public void deleteUserinfoMap(@RequestBody Map<String, String> map) {
    System.out.println(map);
}

示例5

@DeleteMapping(value = "userinfo/{id}")
public void deleteUserinfo2(@PathVariable("id") int id) {
    System.out.println("========= id : " + id);
    this.dao.delete(id);
}

上面的5个例子,只有这种情况下,通过restful的方法才能获取deletemapping的参数值,实在是费解。

另外的一个问题

在示例5中,delete操作竟然不能执行2次,当第二次执行的时候,由于数据已经被删除,导致程序直接抛出异常,错误信息如下

{
  "timestamp": 1505654465700,
  "status": 500,
  "error": "Internal Server Error",
  "exception": "org.springframework.dao.EmptyResultDataAccessException",
  "message": "No class com.zzg.springboot.firstbootweb.entity.Userinfo entity with id 2 exists!",
  "path": "/userinfo/userinfo/2"
}

总而言之

就是@DeleteMapping注解无法对 form 参数进行参数解析的问题,但是面对 @RequestBody 无法进行参数分解问题。

当然下面是我自己写的参数解析注解 @RequestJson(基于Spring)。

以上为个人经验,希望能给大家一个参考,也希望大家多多支持码农之家。


参考资料

相关文章

网友讨论