mybatis自动生成器生成所有表
Posted 生活无限美
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了mybatis自动生成器生成所有表相关的知识,希望对你有一定的参考价值。
<?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"> <!-- 上面的config_1_0.dtd如果报错,点击该行前面的小灯泡并选择Fetch...即可--> <!-- 以下所有TODO是需要自定义必须改的地方 --> <generatorConfiguration> <!-- TODO 数据库驱动:选择你的本地硬盘上面的数据库驱动包--> <classPathEntry location="D:jarscomoracleojdbc611.2.0.4.0ojdbc6-11.2.0.4.0.jar"/> <context id="DB2Tables" targetRuntime="MyBatis3"> <commentGenerator> <property name="suppressDate" value="true"/> <!-- 是否去除自动生成的注释 true:是 : false:否 --> <property name="suppressAllComments" value="true"/> </commentGenerator> <!-- TODO 数据库链接URL,用户名、密码 --> <jdbcConnection driverClass="oracle.jdbc.driver.OracleDriver" connectionURL="jdbc:oracle:thin://127.0.0.1:1521/orcl" userId="scott" password="tiger"> </jdbcConnection> <javaTypeResolver> <property name="forceBigDecimals" value="false"/> </javaTypeResolver> <!-- TODO 生成模型的包名和位置--> <javaModelGenerator targetPackage="com.demo.model" targetProject="src/main/java"> <property name="enableSubPackages" value="false"/> <property name="trimStrings" value="true"/> </javaModelGenerator> <!-- 生成映射文件的包名和位置--> <sqlMapGenerator targetPackage="mapping" targetProject="src/main/resources"> <property name="enableSubPackages" value="false"/> </sqlMapGenerator> <!-- TODO 生成DAO的包名和位置--> <javaClientGenerator type="XMLMAPPER" targetPackage="com.demo.mapper" targetProject="src/main/java"> <property name="enableSubPackages" value="false"/> </javaClientGenerator> <!-- 要生成的表 tableName是数据库中的表名或视图名 domainObjectName是实体类名--> <!-- <table tableName="dept" domainObjectName="Dept" enableCountByExample="false" enableUpdateByExample="false" enableDeleteByExample="false" enableSelectByExample="false" selectByExampleQueryId="false"></table>--> <!-- 生成数据库中所有表的实体 (标上重点,考试要考:要加上schema=SCOTT(大写),否则会生成所有实体表)--> <table tableName="%" schema="SCOTT" enableCountByExample="false" enableUpdateByExample="false" enableDeleteByExample="false" enableSelectByExample="false" selectByExampleQueryId="false" ></table> </context> </generatorConfiguration>
以上是关于mybatis自动生成器生成所有表的主要内容,如果未能解决你的问题,请参考以下文章
mybatis generator自动生成model,mapper等文件
SpringBoot与Mybatis整合(包含generate自动生成代码工具,数据库表一对一,一对多,关联关系中间表的查询)