存在可选的int参数'currentPageNum',但由于声明为基本类型,不能转换为空值。考虑将其声明为对应基本类型的对象包装器。

Optional int parameter ‘currentPageNum’ 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.

错误已解决,
form表单提交的时候记得不能携带参数 比如:
action="${pageContext.request.contextPath }/user/userList.action?currentPageNum=1"
这样写会报错,因为他不允许携带参数,他会把这个携带的参数丢掉,然后controller层就会报错找不到相对应的方法。

如果想携带参数就必须使用post提交

你可能感兴趣的:(存在可选的int参数'currentPageNum',但由于声明为基本类型,不能转换为空值。考虑将其声明为对应基本类型的对象包装器。)