是否存在任何用于可视化(或至少记录)iBatis 映射的技术?

发布于 2024-11-08 21:23:05 字数 115 浏览 0 评论 0原文

对于那些使用过 iBatis 的人来说,您通常使用哪些技术或工具来可视化声明性 XML、数据库表/过程和 Java 对象之间的数据映射?我没有在网络或文档中找到任何参考资料,并且很好奇是否存在好的解决方案。提前致谢!

For those who have used iBatis - what techniques or tools do you typically use to visualize the data mappings between declarative XML, database tables / procedures, and Java objects? I haven't found any references on the web or in the documentation, and was curious whether good solutions exist. Thanks in advance!

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(1

只是我以为 2024-11-15 21:23:05

如果您想要生成的查询及其参数映射,那么您可以使用日志记录。 iBatis 支持 Log4J 日志记录,您可以使用它。它显示在日志记录区域中执行 sql 和其他类似的方式

Preparing Statement:  /*your query to be prepared */
Executing Statement:  /*your prepared query with parameter mapping* (wiht ?,?,?)/
Parameters:           /*Parameters mapped with the same sequence as `Executing Statement`*/
Types:                /*java types of the mapped parameter(example java.lang.String, java.lang.String, java.lang.String)*/
ResultSet:            /*ResultSet of the query (if any)*/
Result:               /*Rows of the ResultSet */

文档位于 此链接
类似的主题位于此处

If you want the generated query and its parameter mapping then you can use Logging. iBatis support Log4J logging you can use that.It shows executing sql and other like that way in the logging area

Preparing Statement:  /*your query to be prepared */
Executing Statement:  /*your prepared query with parameter mapping* (wiht ?,?,?)/
Parameters:           /*Parameters mapped with the same sequence as `Executing Statement`*/
Types:                /*java types of the mapped parameter(example java.lang.String, java.lang.String, java.lang.String)*/
ResultSet:            /*ResultSet of the query (if any)*/
Result:               /*Rows of the ResultSet */

A documentation is in this link.
And a similar topic is in here

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