是否存在任何用于可视化(或至少记录)iBatis 映射的技术?
对于那些使用过 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
如果您想要生成的查询及其参数映射,那么您可以使用日志记录。 iBatis 支持
Log4J
日志记录,您可以使用它。它显示在日志记录区域中执行 sql 和其他类似的方式文档位于 此链接。
类似的主题位于此处
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 areaA documentation is in this link.
And a similar topic is in here