欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页

MyBatis 自动生成实体类,配置文件

程序员文章站 2022-06-15 09:15:09
...

根目录创建generatorConfig.xml文件

这个文件是基于maven项目创建的,路径需要自行定义

<?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="C:\Users\ASUS\.m2\repository\mysql\mysql-connector-java\5.1.38\mysql-connector-java-5.1.38.jar"/>    
    <context id="DB2Tables"  targetRuntime="MyBatis3">
    	<!-- 是否去除注释 -->
        <commentGenerator>
            <property name="suppressDate" value="true"/>     
            <property name="suppressAllComments" value="true"/>    
        </commentGenerator>
        <!--数据库链接URL,用户名、密码 -->    
        <jdbcConnection driverClass="com.mysql.jdbc.Driver" connectionURL="jdbc:mysql://localhost:3306/test" userId="root" password="123456">    
        </jdbcConnection>
        <!-- 类型转换 -->
        <javaTypeResolver>    
            <property name="forceBigDecimals" value="false"/>    
        </javaTypeResolver>
        <!-- 生成模型的包名和位置 targetPackage:包路径  targetProject:项目名称加根路径-->
        <javaModelGenerator targetPackage="com.pxg.entity" targetProject="maven_mybatis_mysql/src/main/java">    
            <property name="enableSubPackages" value="true"/>    
            <property name="trimStrings" value="true"/>    
        </javaModelGenerator>
        <!-- 生成映射文件的包名和位置-->    
        <sqlMapGenerator targetPackage="com.pxg.mapper" targetProject="maven_mybatis_mysql/src/main/java">    
            <property name="enableSubPackages" value="true"/>    
        </sqlMapGenerator> 
        <!-- 生成DAO的包名和位置-->
        <javaClientGenerator type="XMLMAPPER" targetPackage="com.pxg.dao" targetProject="maven_mybatis_mysql/src/main/java">    
            <property name="enableSubPackages" value="true"/>    
        </javaClientGenerator>
        <!-- 要生成的表 tableName是数据库中的表名或视图名 domainObjectName是需要创建的实体类名-->    
        <table tableName="tb_book" domainObjectName="Tb_Book" enableCountByExample="false" enableUpdateByExample="false" enableDeleteByExample="false" enableSelectByExample="false" selectByExampleQueryId="false"></table>  
    </context>    
</generatorConfiguration>