提交 37bfd143 编写于 作者: F fengyongwei

调整架构

上级 1f713641
### 版本升级日志
---
###### v6.1.0-RELEASE
###### v7.0.0-RELEASE
1. 整理优化演示数据
2. 修复课程简介为空不显示课程信息
3.
3. roncoo-education-gateway修改为roncoo-education-server-gateway
4. roncoo-education-job修改为roncoo-education-server-job
5.
###### v6.0.0-RELEASE -- 2020.01.28
1. 修改网关配置开发环境地址与测试环境地址一致
......
......@@ -5,7 +5,7 @@
<groupId>com.roncoo</groupId>
<artifactId>roncoo-education</artifactId>
<version>6.1.0-RELEASE</version>
<version>7.0.0-RELEASE</version>
<packaging>pom</packaging>
<name>roncoo-education</name>
......@@ -333,7 +333,7 @@
<module>roncoo-education-server-config</module>
<!-- 监控中心 -->
<module>roncoo-education-server-admin</module>
<!-- 公用工具 -->
<!-- 基础工程 -->
<module>roncoo-education-util</module>
<!-- 系统管理 -->
<module>roncoo-education-system</module>
......@@ -342,9 +342,9 @@
<!-- 课程管理 -->
<module>roncoo-education-course</module>
<!-- 定时任务 -->
<module>roncoo-education-job</module>
<module>roncoo-education-server-job</module>
<!-- 网关接口 -->
<module>roncoo-education-gateway</module>
<module>roncoo-education-server-gateway</module>
</modules>
</project>
......@@ -5,7 +5,7 @@
<parent>
<groupId>com.roncoo</groupId>
<artifactId>roncoo-education</artifactId>
<version>6.1.0-RELEASE</version>
<version>7.0.0-RELEASE</version>
</parent>
<artifactId>roncoo-education-course</artifactId>
......
......@@ -5,7 +5,7 @@
<parent>
<groupId>com.roncoo</groupId>
<artifactId>roncoo-education-course</artifactId>
<version>6.1.0-RELEASE</version>
<version>7.0.0-RELEASE</version>
</parent>
<artifactId>roncoo-education-course-feign</artifactId>
......
......@@ -7,7 +7,7 @@
<parent>
<groupId>com.roncoo</groupId>
<artifactId>roncoo-education-course</artifactId>
<version>6.1.0-RELEASE</version>
<version>7.0.0-RELEASE</version>
</parent>
<artifactId>roncoo-education-course-service</artifactId>
......
......@@ -4,7 +4,7 @@
<parent>
<groupId>com.roncoo</groupId>
<artifactId>roncoo-education</artifactId>
<version>6.1.0-RELEASE</version>
<version>7.0.0-RELEASE</version>
</parent>
<artifactId>roncoo-education-server-admin</artifactId>
......
......@@ -4,7 +4,7 @@
<parent>
<groupId>com.roncoo</groupId>
<artifactId>roncoo-education</artifactId>
<version>6.1.0-RELEASE</version>
<version>7.0.0-RELEASE</version>
</parent>
<artifactId>roncoo-education-server-config</artifactId>
......
......@@ -5,7 +5,7 @@
<parent>
<groupId>com.roncoo</groupId>
<artifactId>roncoo-education</artifactId>
<version>6.1.0-RELEASE</version>
<version>7.0.0-RELEASE</version>
</parent>
<artifactId>roncoo-education-server-eureka</artifactId>
......
......@@ -5,12 +5,12 @@
<parent>
<groupId>com.roncoo</groupId>
<artifactId>roncoo-education</artifactId>
<version>6.1.0-RELEASE</version>
<version>7.0.0-RELEASE</version>
</parent>
<artifactId>roncoo-education-gateway</artifactId>
<artifactId>roncoo-education-server-gateway</artifactId>
<name>roncoo-education-gateway</name>
<name>roncoo-education-server-gateway</name>
<dependencies>
......@@ -91,7 +91,7 @@
</dependencies>
<build>
<finalName>gateway</finalName>
<finalName>server-gateway</finalName>
<plugins>
<plugin>
......
......@@ -11,7 +11,7 @@ import org.springframework.web.cors.CorsConfiguration;
import org.springframework.web.cors.UrlBasedCorsConfigurationSource;
import org.springframework.web.filter.CorsFilter;
import com.roncoo.education.gateway.common.FilterPre;
import com.roncoo.education.server.gateway.common.FilterPre;
/**
* 服务网关
......
/**
* Copyright 2015-现在 广州市领课网络科技有限公司
*/
package com.roncoo.education.gateway.common;
package com.roncoo.education.server.gateway.common;
import java.io.BufferedReader;
import java.io.DataInputStream;
import java.io.IOException;
import java.io.InputStreamReader;
import java.util.HashSet;
import java.util.List;
import java.util.Map;
import java.util.Set;
import java.util.TreeMap;
import java.util.concurrent.TimeUnit;
......@@ -35,7 +33,6 @@ import com.roncoo.education.util.enums.RedisPreEnum;
import com.roncoo.education.util.enums.ResultEnum;
import com.roncoo.education.util.tools.JSONUtil;
import com.roncoo.education.util.tools.JWTUtil;
import com.xiaoleilu.hutool.util.CollectionUtil;
/**
* 请求开始前执行
......
/**
* Copyright 2015-现在 广州市领课网络科技有限公司
*/
package com.roncoo.education.gateway.controller;
package com.roncoo.education.server.gateway.controller;
import org.springframework.stereotype.Controller;
import org.springframework.web.bind.annotation.RequestMapping;
......
......@@ -6,12 +6,12 @@
<parent>
<groupId>com.roncoo</groupId>
<artifactId>roncoo-education</artifactId>
<version>6.1.0-RELEASE</version>
<version>7.0.0-RELEASE</version>
</parent>
<artifactId>roncoo-education-job</artifactId>
<artifactId>roncoo-education-server-job</artifactId>
<name>roncoo-education-job</name>
<name>roncoo-education-server-job</name>
<dependencies>
......@@ -63,7 +63,7 @@
</dependencies>
<build>
<finalName>job</finalName>
<finalName>server-job</finalName>
<plugins>
<plugin>
......
package com.roncoo.education.job;
package com.roncoo.education.server.job;
import com.roncoo.education.system.feign.interfaces.IFeignMsg;
import org.springframework.beans.factory.annotation.Autowired;
......
package com.roncoo.education.job;
package com.roncoo.education.server.job;
import com.roncoo.education.course.feign.interfaces.IFeignOrderInfo;
import org.springframework.beans.factory.annotation.Autowired;
......
......@@ -5,7 +5,7 @@
<parent>
<groupId>com.roncoo</groupId>
<artifactId>roncoo-education</artifactId>
<version>6.1.0-RELEASE</version>
<version>7.0.0-RELEASE</version>
</parent>
<artifactId>roncoo-education-system</artifactId>
......
......@@ -6,7 +6,7 @@
<parent>
<groupId>com.roncoo</groupId>
<artifactId>roncoo-education-system</artifactId>
<version>6.1.0-RELEASE</version>
<version>7.0.0-RELEASE</version>
</parent>
<artifactId>roncoo-education-system-feign</artifactId>
......
......@@ -5,7 +5,7 @@
<parent>
<groupId>com.roncoo</groupId>
<artifactId>roncoo-education-system</artifactId>
<version>6.1.0-RELEASE</version>
<version>7.0.0-RELEASE</version>
</parent>
<artifactId>roncoo-education-system-service</artifactId>
......
......@@ -5,7 +5,7 @@
<parent>
<groupId>com.roncoo</groupId>
<artifactId>roncoo-education</artifactId>
<version>6.1.0-RELEASE</version>
<version>7.0.0-RELEASE</version>
</parent>
<artifactId>roncoo-education-user</artifactId>
......
......@@ -5,7 +5,7 @@
<parent>
<groupId>com.roncoo</groupId>
<artifactId>roncoo-education-user</artifactId>
<version>6.1.0-RELEASE</version>
<version>7.0.0-RELEASE</version>
</parent>
<artifactId>roncoo-education-user-feign</artifactId>
......
......@@ -5,7 +5,7 @@
<parent>
<groupId>com.roncoo</groupId>
<artifactId>roncoo-education-user</artifactId>
<version>6.1.0-RELEASE</version>
<version>7.0.0-RELEASE</version>
</parent>
<artifactId>roncoo-education-user-service</artifactId>
......
......@@ -6,7 +6,7 @@
<parent>
<groupId>com.roncoo</groupId>
<artifactId>roncoo-education</artifactId>
<version>6.1.0-RELEASE</version>
<version>7.0.0-RELEASE</version>
</parent>
<artifactId>roncoo-education-util</artifactId>
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册