修改统一目录名称

This commit is contained in:
shuzheng 2016-12-01 11:01:24 +08:00
parent ef5cebf3ba
commit 3a71000dc5
215 changed files with 135 additions and 99 deletions

View File

@ -3,40 +3,40 @@
# 介绍
```
zheng
├── common 公共模块
├── cms 内容管理系统
| ├── cms-dao
| ├── cms-service
| ├── cms-mq(备用mq消费者cms-web自带消费者)
| └── cms-web
├── qa 问答系统
| ├── qa-dao
| ├── qa-service
| └── qa-web
├── upms 通用用户权限系统
| ├── upms-dao
| ├── upms-service
| └── upms-admin
├── pay 支付系统
| ├── pay-service
| ├── pay-sdk
| └── pay-demo
├── ucenter 用户系统
| ├── ucenter-dao
| ├── ucenter-service
| └── ucenter-home
├── wechat 微信系统
| ├── wechat-mp 公众号
| | ├── wechat-mp-dao
| | ├── wechat-mp-service
| | └── wechat-mp-admin
| └── wechat-app 小程序
| ├── wechat-app-sdk
| └── wechat-app-example
├── api 接口系统
└── oss 对象存储系统
├── oss-sdk
└── oss-admin
├── zheng-common 公共模块
├── zheng-cms 内容管理系统
| ├── zheng-cms-dao
| ├── zheng-cms-service
| ├── zheng-cms-mq(备用mq消费者zheng-cms-web自带消费者)
| └── zheng-cms-web
├── zheng-qa 问答系统
| ├── zheng-qa-dao
| ├── zheng-qa-service
| └── zheng-qa-web
├── zheng-upms 通用用户权限系统
| ├── zheng-upms-dao
| ├── zheng-upms-service
| └── zheng-upms-admin
├── zheng-pay 支付系统
| ├── zheng-pay-service
| ├── zheng-pay-sdk
| └── zheng-pay-demo
├── zheng-ucenter 用户系统
| ├── zheng-ucenter-dao
| ├── zheng-ucenter-service
| └── zheng-ucenter-home
├── zheng-wechat 微信系统
| ├── zheng-wechat-mp 公众号
| | ├── zheng-wechat-mp-dao
| | ├── zheng-wechat-mp-service
| | └── zheng-wechat-mp-admin
| └── zheng-wechat-app 小程序
| ├── zheng-wechat-app-sdk
| └── zheng-wechat-app-example
├── zheng-api 接口系统
└── zheng-oss 对象存储系统
├── zheng-oss-sdk
└── zheng-oss-admin
```
# 后端技术:

View File

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

View File

@ -19,10 +19,10 @@
</properties>
<modules>
<module>cms-dao</module>
<module>cms-service</module>
<module>cms-web</module>
<module>cms-mq</module>
<module>zheng-cms-dao</module>
<module>zheng-cms-service</module>
<module>zheng-cms-web</module>
<module>zheng-cms-mq</module>
</modules>
<dependencyManagement>

View File

@ -26,7 +26,7 @@
</dependencies>
<build>
<finalName>cms-dao</finalName>
<finalName>zheng-cms-dao</finalName>
<resources>
<resource>
<directory>src/main/java</directory>
@ -56,6 +56,17 @@
<overwrite>true</overwrite>
</configuration>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-surefire-plugin</artifactId>
<version>2.18.1</version>
<configuration>
<!--是否跳过单元测试-->
<skipTests>true</skipTests>
<!--是否忽略单元测试错误-->
<testFailureIgnore>true</testFailureIgnore>
</configuration>
</plugin>
</plugins>
</build>
</project>

View File

@ -58,7 +58,7 @@
</profiles>
<build>
<finalName>cms-mq</finalName>
<finalName>zheng-cms-mq</finalName>
<filters>
<filter>src/main/resources/profiles/${env}.properties</filter>
</filters>
@ -77,7 +77,7 @@
<configuration>
<scanIntervalSeconds>3</scanIntervalSeconds>
<webApp>
<contextPath>/cms-mq</contextPath>
<contextPath>/zheng-cms-mq</contextPath>
</webApp>
<httpConnector>
<port>8081</port>
@ -85,6 +85,17 @@
<reload>automatic</reload>
</configuration>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-surefire-plugin</artifactId>
<version>2.18.1</version>
<configuration>
<!--是否跳过单元测试-->
<skipTests>true</skipTests>
<!--是否忽略单元测试错误-->
<testFailureIgnore>true</testFailureIgnore>
</configuration>
</plugin>
</plugins>
</build>
</project>

View File

@ -36,7 +36,7 @@ public class defaultQueueMessageListener implements MessageListener {
JSONObject json = JSONObject.fromObject(text);
User user = (User) JSONObject.toBean(json, User.class);
userService.getMapper().insertSelective(user);
_log.info("cms-mq接收到{}", text);
_log.info("zheng-cms-mq接收到{}", text);
} catch (Exception e) {
e.printStackTrace();
}

View File

@ -34,7 +34,7 @@
</dependencies>
<build>
<finalName>cms-service</finalName>
<finalName>zheng-cms-service</finalName>
<resources>
<resource>
<directory>src/main/java</directory>

View File

@ -67,7 +67,7 @@
</profiles>
<build>
<finalName>cms-web</finalName>
<finalName>zheng-cms-web</finalName>
<filters>
<filter>src/main/resources/profiles/${env}.properties</filter>
</filters>
@ -86,7 +86,7 @@
<configuration>
<scanIntervalSeconds>3</scanIntervalSeconds>
<webApp>
<contextPath>/cms-web</contextPath>
<contextPath>/zheng-cms-web</contextPath>
</webApp>
<httpConnector>
<port>8080</port>
@ -94,6 +94,17 @@
<reload>automatic</reload>
</configuration>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-surefire-plugin</artifactId>
<version>2.18.1</version>
<configuration>
<!--是否跳过单元测试-->
<skipTests>true</skipTests>
<!--是否忽略单元测试错误-->
<testFailureIgnore>true</testFailureIgnore>
</configuration>
</plugin>
</plugins>
</build>
</project>

View File

@ -36,7 +36,7 @@ public class defaultQueueMessageListener implements MessageListener {
JSONObject json = JSONObject.fromObject(text);
User user = (User) JSONObject.toBean(json, User.class);
userService.getMapper().insertSelective(user);
_log.info("cms-web接收到{}", text);
_log.info("zheng-cms-web接收到{}", text);
} catch (Exception e) {
e.printStackTrace();
}

Some files were not shown because too many files have changed in this diff Show More