今天在操作redis的时候报了这个错:Optional int parameter 'time' is present but cannot be translated into a null value due to being decla 这句话意思:参数time存在,但是无法将其转为为null 查看了下原因,time这个字段是用来记录设置多久时间过期的, 我在service层设置的是Long 类型, 我在Controller 层设置的是long类型,前后设置的不一样,猜测前后需要设置一致,…
接口测试的时候遇到了一个问题,导致测试阻断了好久,在此记录,谨防忘记. 具体报错如下: Optional int parameter 'pId' is present but cannot be translated into a null value due to being declared as a primitive type. Consider declaring it as object wrapper for the corresponding primitive type. 接口…
错误的意思是: "可选的int参数'fundID'存在但由于被声明为基本类型而无法转换为空值" 意思是fundID被申明为int的基本数据类型, 不能转换为字符串的null值. 难道是在参数调用 的时候, 需要把fundID设置为对象类型吗? 答案是正确的. @RequestMapping(value = "/fund-purchase") public String fundPurchase(int fundID) { Fund fund = fundServic…
错误日志: java.lang.IllegalStateException: Optional int parameter 'resourceState' is present but cannot be translated into a null value due to being declared as a primitive type. Consider declaring it as object wrapper for the corresponding primitive typ…
解决办法:把基本类型改为对象,譬如此处将pageId的类型由int 改为Integer 2016-10-19 19:36:11.275 DEBUG [http-nio-9999-exec-2][org.springframework.web.servlet.DispatcherServlet] Last-Modified value for [/user/1/detail] is: -1 2016-10-19 19:36:11.278 DEBUG [http-nio-9999-exec-2][o…
今日, 本人在tomcat+spring mvc平台的服务器上遇到java.lang.IllegalStateException: Optional int parameter 'id' is not present异常, 很是怪异, mvc方法里面的id为int型, 明明是有值的, 为什么说没有? 改为Integer也不行, mvc方法直接无响应! 然后, 在本地模拟改用例, 发现可以正常执行, 而另一个同事说要把超长的图片参数放到Mvc方法的最后就可以正常访问! 怪异! 后来经过多次试验,…
我的spring mvc 代码: @Controller @RequestMapping("/product") public class Fancy { @RequestMapping(value = "/fancy") @ResponseBody public String showFancy(@RequestParam(value = "page", required = false) int page) { return "{\…
来自:https://blog.csdn.net/qq_15238647/article/details/81539287 关于ajax请求spring后台出现 Required String parameter ‘id’ is not present异常, 如果前端传入的是json数据那么后端使用 @RequestBody HashMap<String, String> map 进行接收,然后再通过map.get(“id”)获取对应的数据 如果前端传入的是正常表单数据,那么后端使用 @Req…
Custom Parameter-id Creation By Abhijit Daptary, Capgemini India Step1: Creation of parameter ID.  Parameter ID can be created in the table TPARA. Just enter the name of the parameter id in the table and that parameter ID will be created.      Go to…