abator 无注释版
程序员文章站
2022-07-14 17:14:46
...
abator为ibatis代码生成器,会自动生成sqlmap xml文件,javaBean,dao等,使用起来也比较方便,但abator默认会生成很多无用的注释,因此反编译后做了些修改。
其eclipse插件地址为:http://ibatis.apache.org/tools/abator
待安装完后,eclipse的“plugins\org.apache.ibatis.abator.core_1.1.0”目录下会有一个abator.jar,用附件中无任何注释版abator.jar替换即可。
以下为abatorConfig.xml配置参考用。
其eclipse插件地址为:http://ibatis.apache.org/tools/abator
待安装完后,eclipse的“plugins\org.apache.ibatis.abator.core_1.1.0”目录下会有一个abator.jar,用附件中无任何注释版abator.jar替换即可。
以下为abatorConfig.xml配置参考用。
<abatorConfiguration > <abatorContext > <jdbcConnection driverClass="com.mysql.jdbc.Driver" connectionURL="jdbc:mysql://localhost:3306/myframe" userId="root" password="123456" > <classPathEntry location="E:/workspace/myFrame/lib/mysql-connector-java-5.1.5-bin.jar" /> </jdbcConnection> <javaModelGenerator targetPackage="com.java" targetProject="TestAbator/src" /> <sqlMapGenerator targetPackage="com.sqlmap" targetProject="TestAbator/src" /> <daoGenerator targetPackage="com.dao" targetProject="TestAbator/src" type="GENERIC-CI" /> <table schema="myframe" tableName="sys_menu" > </table> <table schema="myframe" tableName="sys_user" > </table> </abatorContext> </abatorConfiguration>