Skip to content

Commit

Permalink
调整架构
Browse files Browse the repository at this point in the history
  • Loading branch information
fengyongwei committed Apr 30, 2020
1 parent 1f71364 commit 37bfd14
Show file tree
Hide file tree
Showing 27 changed files with 35 additions and 36 deletions.
6 changes: 4 additions & 2 deletions UPDATE.md
Original file line number Diff line number Diff line change
@@ -1,9 +1,11 @@
### 版本升级日志
---
###### 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. 修改网关配置开发环境地址与测试环境地址一致
Expand Down
8 changes: 4 additions & 4 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -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>
Expand Down Expand Up @@ -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>
Expand All @@ -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>
2 changes: 1 addition & 1 deletion roncoo-education-course/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -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>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -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>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -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>
Expand Down
2 changes: 1 addition & 1 deletion roncoo-education-server-admin/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -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>
Expand Down
2 changes: 1 addition & 1 deletion roncoo-education-server-config/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -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>
Expand Down
2 changes: 1 addition & 1 deletion roncoo-education-server-eureka/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -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>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -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>

Expand Down Expand Up @@ -91,7 +91,7 @@
</dependencies>

<build>
<finalName>gateway</finalName>
<finalName>server-gateway</finalName>

<plugins>
<plugin>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
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;

/**
* 服务网关
Expand Down
Original file line number Diff line number Diff line change
@@ -1,16 +1,14 @@
/**
* 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;

Expand All @@ -35,7 +33,6 @@
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;

/**
* 请求开始前执行
Expand Down
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
/**
* 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;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -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>

Expand Down Expand Up @@ -63,7 +63,7 @@
</dependencies>

<build>
<finalName>job</finalName>
<finalName>server-job</finalName>

<plugins>
<plugin>
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
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;
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
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;
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
package com.roncoo.education.job;
package com.roncoo.education.server.job;

import java.io.File;

Expand Down
2 changes: 1 addition & 1 deletion roncoo-education-system/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -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>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -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>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -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>
Expand Down
2 changes: 1 addition & 1 deletion roncoo-education-user/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -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>
Expand Down
2 changes: 1 addition & 1 deletion roncoo-education-user/roncoo-education-user-feign/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -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>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -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>
Expand Down
2 changes: 1 addition & 1 deletion roncoo-education-util/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -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>
Expand Down

0 comments on commit 37bfd14

Please sign in to comment.