您的位置:首页 > 编程语言

maven插件mybatis-generator生成代码配置

2017-03-15 14:10 661 查看

1、创建 maven 项目

2、 pom.xml

<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"> <modelVersion>4.0.0</modelVersion>

<groupId>org.demo</groupId>
<artifactId>MybatisGenerator</artifactId>
<version>0.0.1-SNAPSHOT</version>
4000
<packaging>jar</packaging>

<name>MybatisGenerator</name>
<url>http://maven.apache.org</url>

<properties>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
</properties>

<build>
<finalName>mybatis_generator</finalName>
<plugins>
<plugin>
<groupId>org.mybatis.generator</groupId>
<artifactId>mybatis-generator-maven-plugin</artifactId>
<version>1.3.5</version>
<configuration>
<!--允许移动生成的文件-->
<verbose>true</verbose>
<!--允许覆盖生成的文件-->
<overwrite>true</overwrite>
</configuration>

<dependencies>
<!-- 在pom中可以直接配置依赖的数据库 generatorConfig.xml就不需要再配置数据库的jar了 -->
<dependency>
<groupId>mysql</groupId>
<artifactId>mysql-connector-java</artifactId>
<version>5.1.30</version>
</dependency>
</dependencies>
</plugin>

</plugins>
</build>
</project>


3、 在
src/main/resources
(路径一定不能错) 下创建 generatorConfig.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>
<!--数据库驱动jar
<classPathEntry location="E:\mysql-connector-java-5.1.7-bin.jar" />
-->

<context id="DB2Tables" targetRuntime="MyBatis3">
<!--去除注释  -->
<commentGenerator>
<property name="suppressAllComments" value="true" />
</commentGenerator>

<!--数据库连接 -->
<jdbcConnection driverClass="com.mysql.jdbc.Driver"
connectionURL="jdbc:mysql://xxxx:3306/xx"
userId="root"
password="xxxx">
</jdbcConnection>
<!--默认false
Java type resolver will always use java.math.BigDecimal if the database column is of type DECIMAL or NUMERIC.
-->
<javaTypeResolver >
<property name="forceBigDecimals" value="false" />
</javaTypeResolver>

<!--生成实体类 指定包名 以及生成的地址 (可以自定义地址,但是路径不存在不会自动创建  使用Maven生成在target目录下,会自动创建) -->
<javaModelGenerator targetPackage="xxx.xxx.dto" targetProject="/xxx/workspace/MybatisGenerator/src/main/java">
<property name="enableSubPackages" value="true" />
<property name="trimStrings" value="true" />
</javaModelGenerator>
<!--生成SQLMAP文件 -->
<sqlMapGenerator targetPackage="xxx.xxx.mapper.conf.mapper"  targetProject="/xxx/workspace/MybatisGenerator/src/main/java">
<property name="enableSubPackages" value="true" />
</sqlMapGenerator>
<!--生成Dao文件 可以配置 type="XMLMAPPER"生成xml的dao实现  context id="DB2Tables" 修改targetRuntime="MyBatis3"  -->
<javaClientGenerator  targetPackage="xxx.xxx.dao"  targetProject="/xxx/workspace/MybatisGenerator/src/main/java" type="XMLMAPPER">
<property name="enableSubPackages" value="true" />
</javaClientGenerator>

<!--对应数据库表 mysql可以加入主键自增 字段命名 忽略某字段等-->
<table tableName="t_common_region" domainObjectName="CommonRegion"
enableCountByExample="false" enableSelectByExample="false" enableUpdateByExample="false" enableDeleteByExample="false">

</table>

</context>
</generatorConfiguration>


4、 如果是在eclipse 中,选择pom.xml文件,击右键先择Run AS——>Maven Build… ——>在Goals框中输入:
mybatis-generator:generate

刷新项目即可

reference

maven插件mybatis-generator生成代码配置

用Maven插件生成Mybatis代码

数据库逆向框架代码生成工具:MyBatis Generator的使用

Running MyBatis Generator With Maven
内容来自用户分享和网络整理,不保证内容的准确性,如有侵权内容,可联系管理员处理 点击这里给我发消息
标签:  maven mybaits generator