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

时间:2011-05-20 16:41:10

标签: java ibatis

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

1 个答案:

答案 0 :(得分:0)

如果您想要生成的查询及其参数映射,则可以使用Logging。 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 */

文档位于this link here

中有类似的主题