很久没有用mybatis-generator了。都忘记如何配置,今天又跑了一遍。记录一下。
为了不与侵入工程,我选择了命令行的方式。
首先要下载两个jar, 并放到工程根目录:
一个是oracle jdbc的我用的是ojdbc6-12.1.0.1.jar
一个是mybatis-generator-core-1.4.0.jar
在http://mvnrepository.com/去下吧。
在Idea工程根目录创建配置文件configuration.xml
<?xml version="1.0" encoding="UTF-8"?> <!DOCTYPE generatorConfiguration PUBLIC "-//mybatis.org//DTD MyBatis Generator Configuration 1.0//EN" "http://mybatis.org/dtd/mybatis-generator-config_1_0.dtd"> <generatorConfiguration> <classPathEntry location="D:/ProjectDemo/ojdbc6-12.1.0.1.jar" /> <context id="default" targetRuntime="MyBatis3"> <!-- 解决xml不覆盖的问题 --> <plugin type="org.mybatis.generator.plugins.UnmergeableXmlMappersPlugin" /> <!-- optional,旨在创建class时,对注释进行控制 --> <commentGenerator> <property name="suppressDate" value="true"/> <!-- 是否去除自动生成的注释 true:是 : false:否 --> <property name="suppressAllComments" value="true"/> </commentGenerator> <!--jdbc的数据库连接 --> <jdbcConnection driverClass="oracle.jdbc.driver.OracleDriver" connectionURL="jdbc:oracle:thin:@localhost:1521:oracl" userId="xxx" password="xxx"> </jdbcConnection> <!-- 非必需,类型处理器,在数据库类型和java类型之间的转换控制--> <javaTypeResolver> <property name="forceBigDecimals" value="false"/> </javaTypeResolver> <!-- Model模型生成器,用来生成含有主键key的类,记录类 以及查询Example类 targetPackage 指定生成的model生成所在的包名 targetProject 指定在该项目下所在的路径 --> <javaModelGenerator targetPackage="com.xxx.xxx.mybatis.entity" targetProject="./src/main/java"> <!-- 是否允许子包,即targetPackage.schemaName.tableName --> <property name="enableSubPackages" value="false"/> <!-- 是否对类CHAR类型的列的数据进行trim操作 --> <property name="trimStrings" value="true"/> <!-- 是否对model添加 构造函数 --> <!--<property name="constructorBased" value="true"/>--> <!-- 建立的Model对象是否 不可改变 即生成的Model对象不会有 setter方法,只有构造方法 --> <!--<property name="immutable" value="false"/>--> </javaModelGenerator> <!-- 生成映射文件的包名和位置--> <sqlMapGenerator targetPackage="com.xxx.xxx.mybatis.xml" targetProject="src/main/java"> <property name="enableSubPackages" value="true"/> </sqlMapGenerator> <!-- 生成DAO的包名和位置--> <javaClientGenerator type="XMLMAPPER" targetPackage="com.xxx.xxx.mybatis.mapper" targetProject="src/main/java"> <property name="enableSubPackages" value="true"/> </javaClientGenerator> <!-- 要生成的表 tableName是数据库中的表名或视图名 domainObjectName是实体类名 mapperName是Dao名--> <table tableName="sales" domainObjectName="Sale" enableCountByExample="false" enableDeleteByExample="false" enableSelectByExample="false" enableUpdateByExample="false"> </table> </context> </generatorConfiguration>
该xml中对应的修改有:
connectionURL=“jdbc:oracle:thin:@localhost:1521:oracl”
userId=“xxx”
password=“xxx”>
targetPackage=
现在工程根目录有三个文件了。命令行进入工程目录,运行以下命令就可以生成代码
java -jar mybatis-generator-core-1.4.0.jar -configfile configuration.xml -overwrite
还有一种方法就是用Idea EasyCode插件来生成代码