iBatis 报错:“com.ibatis.sqlmap.client.SqlMapException”
我正在为 iBatis 制作缓存。我将 cache-model
与 flushInterval
、flushOnExecute
行和名为 reference-type< 的
property
一起使用/代码>。然后部署后我收到提到的错误:
java.lang.RuntimeException:解析 XPath '/sqlMapConfig/end()' 时出错。原因:com.ibatis.sqlmap.client.SqlMapException:此SqlMap中没有名为ibator generated_updateByPrimaryKeySelective的语句。`
I am making cache for iBatis. I am using cache-model
with flushInterval
, flushOnExecute
lines and a property
named reference-type
. Then after deploy I get the mentioned error:
java.lang.RuntimeException: Error parsing XPath '/sqlMapConfig/end()'. Cause: com.ibatis.sqlmap.client.SqlMapException: There is no statement named ibatorgenerated_updateByPrimaryKeySelective in this SqlMap.`
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
在
FlushOnExecute
元素上,有一个属性statement
设置为“some_query”值。我必须使用“naming.some_query”,因为我使用的是命名空间“naming”。通常命名空间的使用并不总是需要的,但是这部分需要它。On
FlushOnExecute
element there was an attributestatement
set with value 'some_query'. I had to use 'naming.some_query' wbecause I was using namespace 'naming'. Normally namespace usage is not needed all the times but this part needs it.