shuzheng hace 9 años
padre
commit
2babe6a444

+ 1 - 1
cms/cms-dao/pom.xml

@@ -3,8 +3,8 @@
     <modelVersion>4.0.0</modelVersion>
 
     <parent>
-        <artifactId>zheng-cms</artifactId>
         <groupId>com.zheng</groupId>
+        <artifactId>zheng-cms</artifactId>
         <version>1.0.0</version>
     </parent>
 

+ 1 - 1
cms/cms-service/pom.xml

@@ -3,8 +3,8 @@
     <modelVersion>4.0.0</modelVersion>
 
     <parent>
-        <artifactId>zheng-cms</artifactId>
         <groupId>com.zheng</groupId>
+        <artifactId>zheng-cms</artifactId>
         <version>1.0.0</version>
     </parent>
 

+ 1 - 1
cms/cms-web/pom.xml

@@ -3,8 +3,8 @@
     <modelVersion>4.0.0</modelVersion>
 
     <parent>
-        <artifactId>zheng-cms</artifactId>
         <groupId>com.zheng</groupId>
+        <artifactId>zheng-cms</artifactId>
         <version>1.0.0</version>
     </parent>
 

+ 1 - 1
cms/pom.xml

@@ -3,8 +3,8 @@
     <modelVersion>4.0.0</modelVersion>
 
     <parent>
-        <artifactId>zheng</artifactId>
         <groupId>com.zheng</groupId>
+        <artifactId>zheng</artifactId>
         <version>1.0.0</version>
     </parent>
 

+ 1 - 1
common/pom.xml

@@ -3,8 +3,8 @@
     <modelVersion>4.0.0</modelVersion>
 
     <parent>
-        <artifactId>zheng</artifactId>
         <groupId>com.zheng</groupId>
+        <artifactId>zheng</artifactId>
         <version>1.0.0</version>
     </parent>
 

+ 1 - 1
oss/oss-sdk/pom.xml

@@ -3,8 +3,8 @@
     <modelVersion>4.0.0</modelVersion>
 
     <parent>
-        <artifactId>zheng-oss</artifactId>
         <groupId>com.zheng</groupId>
+        <artifactId>zheng-oss</artifactId>
         <version>1.0.0</version>
     </parent>
 

+ 1 - 1
oss/oss-web/pom.xml

@@ -3,8 +3,8 @@
     <modelVersion>4.0.0</modelVersion>
 
     <parent>
-        <artifactId>zheng-oss</artifactId>
         <groupId>com.zheng</groupId>
+        <artifactId>zheng-oss</artifactId>
         <version>1.0.0</version>
     </parent>
 

+ 1 - 1
oss/pom.xml

@@ -3,8 +3,8 @@
     <modelVersion>4.0.0</modelVersion>
 
     <parent>
-        <artifactId>zheng</artifactId>
         <groupId>com.zheng</groupId>
+        <artifactId>zheng</artifactId>
         <version>1.0.0</version>
     </parent>
 

+ 1 - 0
pom.xml

@@ -23,5 +23,6 @@
         <module>cms</module>
         <module>oss</module>
         <module>qa</module>
+        <module>upms</module>
     </modules>
 </project>

+ 1 - 1
qa/pom.xml

@@ -3,8 +3,8 @@
     <modelVersion>4.0.0</modelVersion>
 
     <parent>
-        <artifactId>zheng</artifactId>
         <groupId>com.zheng</groupId>
+        <artifactId>zheng</artifactId>
         <version>1.0.0</version>
     </parent>
 

+ 39 - 5
qa/qa-dao/pom.xml

@@ -3,8 +3,8 @@
     <modelVersion>4.0.0</modelVersion>
 
     <parent>
-        <artifactId>zheng-qa</artifactId>
         <groupId>com.zheng</groupId>
+        <artifactId>zheng-qa</artifactId>
         <version>1.0.0</version>
     </parent>
 
@@ -20,10 +20,44 @@
 
     <dependencies>
         <dependency>
-            <groupId>junit</groupId>
-            <artifactId>junit</artifactId>
-            <version>3.8.1</version>
-            <scope>test</scope>
+            <groupId>com.zheng</groupId>
+            <artifactId>zheng-common</artifactId>
+            <version>1.0.0</version>
+            <type>jar</type>
         </dependency>
     </dependencies>
+
+    <build>
+        <finalName>qa-dao</finalName>
+        <resources>
+            <resource>
+                <directory>src/main/java</directory>
+                <includes>
+                    <include>**/*.xml</include>
+                </includes>
+                <filtering>true</filtering>
+            </resource>
+            <resource>
+                <directory>src/main/resources</directory>
+            </resource>
+        </resources>
+        <plugins>
+            <plugin>
+                <groupId>org.mybatis.generator</groupId>
+                <artifactId>mybatis-generator-maven-plugin</artifactId>
+                <version>1.3.2</version>
+                <dependencies>
+                    <dependency>
+                        <groupId>com.zheng</groupId>
+                        <artifactId>zheng-common</artifactId>
+                        <version>1.0.0</version>
+                    </dependency>
+                </dependencies>
+                <configuration>
+                    <verbose>true</verbose>
+                    <overwrite>true</overwrite>
+                </configuration>
+            </plugin>
+        </plugins>
+    </build>
 </project>

+ 1 - 1
qa/qa-service/pom.xml

@@ -3,8 +3,8 @@
     <modelVersion>4.0.0</modelVersion>
 
     <parent>
-        <artifactId>zheng-qa</artifactId>
         <groupId>com.zheng</groupId>
+        <artifactId>zheng-qa</artifactId>
         <version>1.0.0</version>
     </parent>
 

+ 25 - 0
upms/pom.xml

@@ -0,0 +1,25 @@
+<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>
+    <modules>
+        <module>upms-dao</module>
+        <module>upms-service</module>
+    </modules>
+
+    <parent>
+        <artifactId>zheng</artifactId>
+        <groupId>com.zheng</groupId>
+        <version>1.0.0</version>
+    </parent>
+
+    <artifactId>zheng-upms</artifactId>
+    <packaging>pom</packaging>
+
+    <name>zheng-upms</name>
+    <url>http://www.zhangshuzheng.cn</url>
+
+    <properties>
+        <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
+    </properties>
+
+</project>

+ 63 - 0
upms/upms-dao/pom.xml

@@ -0,0 +1,63 @@
+<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>
+
+    <parent>
+        <groupId>com.zheng</groupId>
+        <artifactId>zheng-upms</artifactId>
+        <version>1.0.0</version>
+    </parent>
+
+    <artifactId>zheng-upms-dao</artifactId>
+    <packaging>jar</packaging>
+
+    <name>zheng-upms-dao</name>
+    <url>http://www.zhangshuzheng.cn</url>
+
+    <properties>
+        <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
+    </properties>
+
+    <dependencies>
+        <dependency>
+            <groupId>com.zheng</groupId>
+            <artifactId>zheng-common</artifactId>
+            <version>1.0.0</version>
+            <type>jar</type>
+        </dependency>
+    </dependencies>
+
+    <build>
+        <finalName>upms-dao</finalName>
+        <resources>
+            <resource>
+                <directory>src/main/java</directory>
+                <includes>
+                    <include>**/*.xml</include>
+                </includes>
+                <filtering>true</filtering>
+            </resource>
+            <resource>
+                <directory>src/main/resources</directory>
+            </resource>
+        </resources>
+        <plugins>
+            <plugin>
+                <groupId>org.mybatis.generator</groupId>
+                <artifactId>mybatis-generator-maven-plugin</artifactId>
+                <version>1.3.2</version>
+                <dependencies>
+                    <dependency>
+                        <groupId>com.zheng</groupId>
+                        <artifactId>zheng-common</artifactId>
+                        <version>1.0.0</version>
+                    </dependency>
+                </dependencies>
+                <configuration>
+                    <verbose>true</verbose>
+                    <overwrite>true</overwrite>
+                </configuration>
+            </plugin>
+        </plugins>
+    </build>
+</project>

+ 13 - 0
upms/upms-dao/src/main/java/com/zheng/upms/dao/App.java

@@ -0,0 +1,13 @@
+package com.zheng.upms.dao;
+
+/**
+ * Hello world!
+ *
+ */
+public class App 
+{
+    public static void main( String[] args )
+    {
+        System.out.println( "Hello World!" );
+    }
+}

+ 74 - 0
upms/upms-dao/src/resources/generatorConfig.xml

@@ -0,0 +1,74 @@
+<?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>
+
+	<!-- 配置文件 -->
+	<properties resource="jdbc.properties"></properties>
+
+	<!-- mysql驱动包 -->
+	<classPathEntry location="${classPathEntry}" />
+
+	<context id="context" targetRuntime="MyBatis3">
+
+		<property name="javaFileEncoding" value="UTF-8"/>
+
+		<!-- 由于beginningDelimiter和endingDelimiter的默认值为双引号("),在Mysql中不能这么写,所以还要将这两个默认值改为**反单引号(`)**,配置如下:  -->
+		<property name="beginningDelimiter" value=""/>
+		<property name="endingDelimiter" value=""/>
+
+		<!-- 为生成的Java模型创建一个toString方法 -->
+        <plugin type="org.mybatis.generator.plugins.ToStringPlugin"></plugin>
+
+		<!-- 为生成的Java模型类添加序列化接口,并生成serialVersionUID字段 -->
+		<plugin type="org.mybatis.generator.plugins.SerializablePlugin">
+			<property name="suppressJavaInterface" value="false"/>
+		</plugin>
+
+		<!-- 生成一个新的selectByExample方法,这个方法可以接受一个RowBounds参数,主要用来实现分页 -->
+        <plugin type="com.zheng.common.plugin.PaginationPlugin"></plugin>
+
+		<!-- 生成在XML中的<cache>元素 -->
+		<plugin type="org.mybatis.generator.plugins.CachePlugin">
+			<!-- 使用ehcache -->
+			<property name="cache_type" value="org.mybatis.caches.ehcache.LoggingEhcache" />
+			<!-- 内置cache配置 -->
+			<!--
+			<property name="cache_eviction" value="LRU" />
+			<property name="cache_flushInterval" value="60000" />
+			<property name="cache_readOnly" value="true" />
+			<property name="cache_size" value="1024" />
+			-->
+		</plugin>
+
+		<!-- Java模型生成equals和hashcode方法 -->
+		<plugin type="org.mybatis.generator.plugins.EqualsHashCodePlugin"></plugin>
+
+		<!-- 生成的代码去掉注释 -->
+		<commentGenerator>
+			<property name="suppressAllComments" value="true" />
+		</commentGenerator>
+
+		<!-- 数据库连接 -->
+		<jdbcConnection driverClass="${jdbc.driver}"
+			connectionURL="${jdbc.url}"
+			userId="${jdbc.username}"
+			password="${jdbc.password}" />
+
+		<!-- model生成 -->
+		<javaModelGenerator targetPackage="${generator.javaModelGenerator.targetPackage}" targetProject="src/main/java" />
+
+		<!-- MapperXML生成 -->
+		<sqlMapGenerator targetPackage="${generator.sqlMapGenerator.targetPackage}" targetProject="src/main/java" />
+
+		<!-- Mapper接口生成 -->
+		<javaClientGenerator targetPackage="${generator.javaClientGenerator.targetPackage}" targetProject="src/main/java" type="XMLMAPPER" />
+
+		<!-- 需要映射的表 -->
+		<table tableName="user" domainObjectName="User">
+			<generatedKey column="id" sqlStatement="MySql" identity="true" />
+		</table>
+		<table tableName="book" domainObjectName="Book">
+			<generatedKey column="id" sqlStatement="MySql" identity="true" />
+		</table>
+	</context>
+</generatorConfiguration>

+ 9 - 0
upms/upms-dao/src/resources/jdbc.properties

@@ -0,0 +1,9 @@
+jdbc.driver=com.mysql.jdbc.Driver
+jdbc.url=jdbc\:mysql\://127.0.0.1\:3306/zheng?useUnicode\=true&characterEncoding\=utf-8&autoReconnect\=true
+jdbc.username=root
+jdbc.password=123456
+
+classPathEntry=D:/mysql-connector-java-5.1.34.jar
+generator.javaModelGenerator.targetPackage=com.zheng.upms.dao.model
+generator.sqlMapGenerator.targetPackage=com.zheng.upms.dao.mapper
+generator.javaClientGenerator.targetPackage=com.zheng.upms.dao.mapper