iBatis 报错:“com.ibatis.sqlmap.client.SqlMapException”

发布于 2024-11-06 13:25:27 字数 401 浏览 0 评论 0原文

我正在为 iBatis 制作缓存。我将 cache-modelflushIntervalflushOnExecute 行和名为 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

一向肩并 2024-11-13 13:25:27

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.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文