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