最近在试试使用springboot编写一个demo进行测试,测试过程中发现@DeleteMapping注解有一些问题,现在汇总如下,有大神指点一下~
示例1
问题:无法获取参数id的值
value="userinfo") (publicvoiddeleteUserinfo(Integerid) { System.out.println("========= id : "+id); this.dao.delete(id); }
在spring-mvc中,经常使用上面的方法获取参数,无论是get还是post方法都可以获取的到,但是在springboot中这种写法得到的id却是null,然后方法就抛出异常,因为delete方法的参数值不能为null;为什么这种方式获取不到参数值呢?
示例2
问题:无法执行方法,无法获取参数值
value="userinfo3") (publicvoiddeleteUserinfo3( ("id") intid) { 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
问题:获取不到参数值
value="userinfo4") (publicvoiddeleteUserinfo4(Userinfouserinfo) { System.out.println(userinfo); this.dao.delete(userinfo); }
在post方法中可以使用entity来接受参数,但是delete方法却不行;上面方法虽然可以执行到方法里面,第一行打印也有内容,但是userinfo对象是空的,没有获取到任何参数,不知为何!
后台日志如下:
{"age":0,"id":0} Hibernate: insertintouserinfo (age, cup_size, name) values (?, ?, ?) Hibernate: deletefromuserinfowhereid=?
极其匪夷所思,我只是执行了一个delete操作,为什么日志会打印insert into 语句呢?
示例4
问题 : 无法获取参数值,方法直接进不到方法体中
value="userinfoMap") (publicvoiddeleteUserinfoMap(Map<String, String>map) { System.out.println(map); }
示例5
value="userinfo/{id}") (publicvoiddeleteUserinfo2( ("id") intid) { 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)。
参考链接:SpringMVC - @RequestJson之HandlerMethodArgumentResolver 从入门到青铜