弹簧控制器-get参数中的%2F

时间:2018-11-19 16:08:03

标签: spring-mvc

客户端要在get参数中发送斜线

http://localhost/controller/getvalue/hello%2Fworld

所以我需要获取这个“ hello%2Fworld”作为字符串参数。我启用了AllowUrlEncodedSlash等功能,但总是出现异常

Failed to convert value of type 'java.lang.String' to required type 'java.lang.Integer'; nested exception is java.lang.NumberFormatException: For input string: "hello/world"

为什么Spring试图将其转换为整数?为什么%2F会自动转换?

0 个答案:

没有答案