用Jetty运行项目,发现报这个错误:
WARN::Nested in org.springframework.beans.factory.BeanCreationException: Error creating bean with name 'shiroFilter' defined in URL 。。。。
开始以为是更新了代码,导致了问题,开始逐步排查,但找来找去,始终没有发现问题。最后,找到某个mapper.xml文件,里面有这样一段:
<association property="mallGoodsCate" javaType="MallGoodsCate">
。。。
</association>
<result column="cw_id" property="cwId" />
原来问题在这里,result这行不能放在 association之后 ,提到前面去,问题果然解决了。