Browse Source

搞mybatis,感觉特别麻烦,有点垃圾

lcl 1 year ago
parent
commit
24e35bec40
2 changed files with 63 additions and 0 deletions
  1. 21 0
      pom.xml
  2. 42 0
      src/main/resources/generator-configuration.xml

+ 21 - 0
pom.xml

@@ -116,6 +116,27 @@
 				<groupId>org.springframework.boot</groupId>
 				<artifactId>spring-boot-maven-plugin</artifactId>
 			</plugin>
+			<plugin>
+				<groupId>org.mybatis.generator</groupId>
+				<artifactId>mybatis-generator-maven-plugin</artifactId>
+				<version>1.4.0</version>
+				<executions>
+					<execution>
+						<id>Generate MyBatis Artifacts</id>
+						<goals>
+							<goal>generate</goal>
+						</goals>
+					</execution>
+				</executions>
+				<configuration>
+					<!-- 输出详细信息 -->
+					<verbose>true</verbose>
+					<!-- 覆盖生成文件 -->
+					<overwrite>true</overwrite>
+					<!-- 定义配置文件 -->
+					<configurationFile>${basedir}/src/main/resources/generator-configuration.xml</configurationFile>
+				</configuration>
+			</plugin>
 		</plugins>
 	</build>
 

+ 42 - 0
src/main/resources/generator-configuration.xml

@@ -0,0 +1,42 @@
+<?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="KxsMainServer">
+
+        <plugin type="org.mybatis.generator.plugins.SerializablePlugin" />
+
+        <commentGenerator>
+            <property name="suppressDate" value="true" />
+            <property name="suppressAllComments" value="true" />
+        </commentGenerator>
+
+        <jdbcConnection driverClass="com.mysql.cj.jdbc.Driver"
+            connectionURL="jdbc:mysql://47.109.31.237:3306/KxsMainServer"
+            userId="KxsMainServer"
+            password="FrW8ZfxlcaVdm1r0">
+        </jdbcConnection>
+
+        <javaTypeResolver>
+            <property name="forceBigDecimals" value="false" />
+        </javaTypeResolver>
+
+        <javaModelGenerator targetPackage="KxsMainServer.model" targetProject="\adminap\src">
+            <property name="enableSubPackages" value="true" />
+            <property name="trimStrings" value="true" />
+        </javaModelGenerator>
+
+        <sqlMapGenerator targetPackage="KxsMainServer.xml" targetProject="\adminap\src">
+            <property name="enableSubPackages" value="true" />
+        </sqlMapGenerator>
+
+        <javaClientGenerator type="XMLMAPPER" targetPackage="KxsMainServer.dao" targetProject="\adminap\src">
+            <property name="enableSubPackages" value="true" />
+        </javaClientGenerator>
+
+        <table schema="Users" tableName="Users" domainObjectName="Customer">
+        </table>
+
+    </context>
+</generatorConfiguration>