这个错误还是比较常见的,NestedServletException,我遇到的情景是分页时sql语句错误,报这个错
原因就是我实现跳转最后一页时调用了Integer.max_value这个属性
`
public String addAdmin(TAdmin admin) {
adminservice.savaAdmin(admin);
//mybatis合理化:传入的数字太大了,
// 在mybatis配置文件中配置reasonable=true进行合理化,异常消除
return “redirect:/admin/index?pageNum=”+Integer.MAX_VALUE;
}`
我使用的是ssm框架,解决方法呢就是在mybatis中的sqlsessionfactory bean中配置这个,将mybatis中的reasonable设置为true,问题就解决了
`
<property name="plugins">
<bean class="com.github.pagehelper.PageInterceptor">
<property name="properties">
<!-- mybatis合理化 -->
<value>reasonable=true</value>
</property>
</bean>
</property>`
这个就是我遇到的错误,以及我的解决办法,希望对你有所帮助