eclipse中mybatis自动生成

  1. 安装插件

eclipse中mybatis自动生成

 

2..建配置文件:file,new,other...

eclipse中mybatis自动生成

 3.配置文件

<?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>

	<!-- 数据库驱动 -->
	<context id="context1">

		<commentGenerator>
			<property name="suppressDate" value="true" />
			<!-- 是否去除自动生成的注释 true:是 : false:否 -->
			<property name="suppressAllComments" value="true" />
		</commentGenerator>

		<jdbcConnection driverClass="com.mysql.jdbc.Driver"
			connectionURL="jdbc:mysql://localhost:3306/generator_test"
			userId="root" password="123456">
		</jdbcConnection>

		<!-- targetProject:生成PO类的位置 -->
		<javaModelGenerator targetPackage="com.zhao.pojo"
			targetProject="customer-center/src/test/java">
			<!-- enableSubPackages:是否让schema作为包的后缀 -->
			<property name="enableSubPackages" value="false" />
			<!-- 从数据库返回的值被清理前后的空格 -->
			<property name="trimStrings" value="true" />
		</javaModelGenerator>

		<!-- targetProject:mapper映射文件生成的位置 -->
		<sqlMapGenerator targetPackage="com.zhao.mapper.xml"
			targetProject="customer-center/src/test/java">
			<!-- enableSubPackages:是否让schema作为包的后缀 -->
			<property name="enableSubPackages" value="false" />
		</sqlMapGenerator>

		<!-- targetPackage:mapper接口生成的位置 -->
		<javaClientGenerator type="XMLMAPPER"
			targetPackage="com.zhao.mapper"
			targetProject="customer-center/src/test/java">
			<!-- enableSubPackages:是否让schema作为包的后缀 -->
			<property name="enableSubPackages" value="false" />
		</javaClientGenerator>

		<!-- tableName="tb_zhaoya"指定数据库表 --><!--domainObjectName="What"指定生成的实体名 -->
		<table tableName="zhaoya" domainObjectName="Zhaoya"></table>

	</context>
</generatorConfiguration>

4.运行配置文件

选中配置文件,右键,run as  ,run  mybatis generator。。