利用mybatis作为和数据库沟通的桥梁,有个比较好的工具,就是这个配置文件,可以根据数据库表自动生成实体类、接口dao层、sqlmapper文件。
<?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> <!-- 引入配置文件,此处我的配置文件和当前generator配置文件在同一个文件夹下,所以直接写文件名即可 --> <properties resource="config.properties" /> <!-- 引入MySQL-connector jar包 --> <classPathEntry location="C:/Rex/maven/repository/mysql/mysql-connector-java/5.1.30/mysql-connector-java-5.1.30.jar" /> <!-- 一个数据库一个context --> <context id="ssm"> <!-- 注释 --> <commentGenerator> <!-- 是否取消注释 --> <property name="suppressAllComments" value="false" /> <!-- 是否生成注释代时间戳 --> <property name="suppressDate" value="true" /> </commentGenerator> <!-- jdbc连接 --> <jdbcConnection driverClass="${mysql.ssm.driver}" connectionURL="${mysql.ssm.url}" userId="${mysql.ssm.username}" password="${mysql.ssm.password}" /> <!-- 类型转换 --> <javaTypeResolver> <!-- 是否使用bigDecimal, false可自动转化以下类型(Long, Integer, Short, etc.) --> <property name="forceBigDecimals" value="false" /> </javaTypeResolver> <!-- 生成实体类地址 --> <javaModelGenerator targetPackage="com.ssm.model" targetProject="src/main/java"> <!-- 是否在当前路径下新加一层schema,eg:fase路径com.ssm.model, true:com.rmbih.model.[schemaName] --> <property name="enableSubPackages" value="false" /> <!-- 是否针对string类型的字段在set的时候进行trim调用 --> <property name="trimStrings" value="true" /> </javaModelGenerator> <!-- 生成mapxml文件 --> <sqlMapGenerator targetPackage="com.ssm.mapper" targetProject="src/main/resources"> <!-- 是否在当前路径下新加一层schema,eg:fase路径com.rmbih.mapper, true:com.rmbih.mapper.[schemaName] --> <property name="enableSubPackages" value="false" /> </sqlMapGenerator> <!-- 生成mapxml对应client,也就是接口dao --> <javaClientGenerator targetPackage="com.ssm.dao.mapper" targetProject="src/main/java" type="XMLMAPPER"> <!-- 是否在当前路径下新加一层schema,eg:fase路径com.rmbih.IDao, true:com.rmbih.IDao.[schemaName] --> <property name="enableSubPackages" value="false" /> </javaClientGenerator> <!-- 配置表信息 --> <!-- schema即为数据库名 tableName为对应的数据库表 domainObjectName是要生成的实体类 enable*ByExample 是否生成 example类 --> <table schema="ssm" tableName="ssm_user_t"> <!--domainObjectName="UserEntity" enableCountByExample="false" enableDeleteByExample="false" enableSelectByExample="false" enableUpdateByExample="false" --> <!-- 忽略列,不生成bean 字段 --> <!-- <ignoreColumn column="FRED" /> --> <!-- 指定列的java数据类型 --> <!-- <columnOverride column="LONG_VARCHAR_FIELD" jdbcType="VARCHAR" /> --> <!-- <columnOverride column="???" property="???" /> --> </table> </context> </generatorConfiguration> |
详细配置见解释。
免责声明:本站发布的内容(图片、视频和文字)以原创、转载和分享为主,文章观点不代表本网站立场,如果涉及侵权请联系站长邮箱:is@yisu.com进行举报,并提供相关证据,一经查实,将立刻删除涉嫌侵权内容。