fix(): 代码结构,风格更改
parent
d0edb52ddb
commit
f92c4daa36
40
README.md
40
README.md
|
@ -2,25 +2,25 @@
|
||||||
|
|
||||||
~~~
|
~~~
|
||||||
com.muyu
|
com.muyu
|
||||||
├── muyu-ui // 前端框架 [80]
|
├── cloud-ui // 前端框架 [80]
|
||||||
├── muyu-gateway // 网关模块 [8080]
|
├── cloud-gateway // 网关模块 [8080]
|
||||||
├── muyu-auth // 认证中心 [9200]
|
├── cloud-auth // 认证中心 [9200]
|
||||||
├── muyu-common // 通用模块
|
├── cloud-common // 通用模块
|
||||||
│ └── muyu-common-core // 核心模块
|
│ └── cloud-common-core // 核心模块
|
||||||
│ └── muyu-common-datascope // 权限范围
|
│ └── cloud-common-datascope // 权限范围
|
||||||
│ └── muyu-common-datasource // 多数据源
|
│ └── cloud-common-datasource // 多数据源
|
||||||
│ └── muyu-common-log // 日志记录
|
│ └── cloud-common-log // 日志记录
|
||||||
│ └── muyu-common-redis // 缓存服务
|
│ └── cloud-common-redis // 缓存服务
|
||||||
│ └── muyu-common-seata // 分布式事务
|
│ └── cloud-common-seata // 分布式事务
|
||||||
│ └── muyu-common-security // 安全模块
|
│ └── cloud-common-security // 安全模块
|
||||||
│ └── muyu-common-swagger // 系统接口
|
│ └── cloud-common-swagger // 系统接口
|
||||||
│ └── muyu-common-system // 系统基础
|
│ └── cloud-common-system // 系统基础
|
||||||
├── muyu-modules // 业务模块
|
├── cloud-modules // 业务模块
|
||||||
│ └── muyu-system // 系统模块 [9201]
|
│ └── cloud-system // 系统模块 [9201]
|
||||||
│ └── muyu-gen // 代码生成 [9202]
|
│ └── cloud-gen // 代码生成 [9202]
|
||||||
│ └── muyu-job // 定时任务 [9203]
|
│ └── cloud-job // 定时任务 [9203]
|
||||||
│ └── muyu-file // 文件服务 [9300]
|
│ └── cloud-file // 文件服务 [9300]
|
||||||
├── muyu-visual // 图形化管理模块
|
├── cloud-visual // 图形化管理模块
|
||||||
│ └── muyu-visual-monitor // 监控中心 [9100]
|
│ └── cloud-visual-monitor // 监控中心 [9100]
|
||||||
├──pom.xml // 公共依赖
|
├──pom.xml // 公共依赖
|
||||||
~~~
|
~~~
|
||||||
|
|
|
@ -8,10 +8,10 @@
|
||||||
</parent>
|
</parent>
|
||||||
<modelVersion>4.0.0</modelVersion>
|
<modelVersion>4.0.0</modelVersion>
|
||||||
|
|
||||||
<artifactId>muyu-auth</artifactId>
|
<artifactId>cloud-auth</artifactId>
|
||||||
|
|
||||||
<description>
|
<description>
|
||||||
muyu-auth认证授权中心
|
cloud-auth认证授权中心
|
||||||
</description>
|
</description>
|
||||||
|
|
||||||
<dependencies>
|
<dependencies>
|
||||||
|
@ -49,7 +49,7 @@
|
||||||
<!-- MuYu Common Security-->
|
<!-- MuYu Common Security-->
|
||||||
<dependency>
|
<dependency>
|
||||||
<groupId>com.muyu</groupId>
|
<groupId>com.muyu</groupId>
|
||||||
<artifactId>muyu-common-security</artifactId>
|
<artifactId>cloud-common-security</artifactId>
|
||||||
</dependency>
|
</dependency>
|
||||||
|
|
||||||
</dependencies>
|
</dependencies>
|
|
@ -7,12 +7,12 @@ nacos:
|
||||||
addr: 47.92.86.60:8848
|
addr: 47.92.86.60:8848
|
||||||
user-name: nacos
|
user-name: nacos
|
||||||
password: nacos
|
password: nacos
|
||||||
namespace: muyu-cloud
|
namespace: cloud-cloud
|
||||||
# Spring
|
# Spring
|
||||||
spring:
|
spring:
|
||||||
application:
|
application:
|
||||||
# 应用名称
|
# 应用名称
|
||||||
name: muyu-auth
|
name: cloud-auth
|
||||||
profiles:
|
profiles:
|
||||||
# 环境配置
|
# 环境配置
|
||||||
active: dev
|
active: dev
|
|
@ -1,7 +1,7 @@
|
||||||
<?xml version="1.0" encoding="UTF-8"?>
|
<?xml version="1.0" encoding="UTF-8"?>
|
||||||
<configuration scan="true" scanPeriod="60 seconds" debug="false">
|
<configuration scan="true" scanPeriod="60 seconds" debug="false">
|
||||||
<!-- 日志存放路径 -->
|
<!-- 日志存放路径 -->
|
||||||
<property name="log.path" value="logs/muyu-auth"/>
|
<property name="log.path" value="logs/cloud-auth"/>
|
||||||
<!-- 日志输出格式 -->
|
<!-- 日志输出格式 -->
|
||||||
<property name="log.pattern" value="%d{HH:mm:ss.SSS} [%thread] %-5level %logger{20} - [%method,%line] - %msg%n"/>
|
<property name="log.pattern" value="%d{HH:mm:ss.SSS} [%thread] %-5level %logger{20} - [%method,%line] - %msg%n"/>
|
||||||
|
|
|
@ -4,15 +4,15 @@
|
||||||
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
|
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
|
||||||
<parent>
|
<parent>
|
||||||
<groupId>com.muyu</groupId>
|
<groupId>com.muyu</groupId>
|
||||||
<artifactId>muyu-common</artifactId>
|
<artifactId>cloud-common</artifactId>
|
||||||
<version>3.6.3</version>
|
<version>3.6.3</version>
|
||||||
</parent>
|
</parent>
|
||||||
<modelVersion>4.0.0</modelVersion>
|
<modelVersion>4.0.0</modelVersion>
|
||||||
|
|
||||||
<artifactId>muyu-common-core</artifactId>
|
<artifactId>cloud-common-core</artifactId>
|
||||||
|
|
||||||
<description>
|
<description>
|
||||||
muyu-common-core核心模块
|
cloud-common-core核心模块
|
||||||
</description>
|
</description>
|
||||||
|
|
||||||
<dependencies>
|
<dependencies>
|
|
@ -9,15 +9,15 @@ public class ServiceNameConstants {
|
||||||
/**
|
/**
|
||||||
* 认证服务的serviceid
|
* 认证服务的serviceid
|
||||||
*/
|
*/
|
||||||
public static final String AUTH_SERVICE = "muyu-auth";
|
public static final String AUTH_SERVICE = "cloud-auth";
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* 系统模块的serviceid
|
* 系统模块的serviceid
|
||||||
*/
|
*/
|
||||||
public static final String SYSTEM_SERVICE = "muyu-system";
|
public static final String SYSTEM_SERVICE = "cloud-system";
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* 文件服务的serviceid
|
* 文件服务的serviceid
|
||||||
*/
|
*/
|
||||||
public static final String FILE_SERVICE = "muyu-file";
|
public static final String FILE_SERVICE = "cloud-file";
|
||||||
}
|
}
|
|
@ -4,15 +4,15 @@
|
||||||
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
|
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
|
||||||
<parent>
|
<parent>
|
||||||
<groupId>com.muyu</groupId>
|
<groupId>com.muyu</groupId>
|
||||||
<artifactId>muyu-common</artifactId>
|
<artifactId>cloud-common</artifactId>
|
||||||
<version>3.6.3</version>
|
<version>3.6.3</version>
|
||||||
</parent>
|
</parent>
|
||||||
<modelVersion>4.0.0</modelVersion>
|
<modelVersion>4.0.0</modelVersion>
|
||||||
|
|
||||||
<artifactId>muyu-common-datascope</artifactId>
|
<artifactId>cloud-common-datascope</artifactId>
|
||||||
|
|
||||||
<description>
|
<description>
|
||||||
muyu-common-datascope权限范围
|
cloud-common-datascope权限范围
|
||||||
</description>
|
</description>
|
||||||
|
|
||||||
<dependencies>
|
<dependencies>
|
||||||
|
@ -20,7 +20,7 @@
|
||||||
<!-- MuYu Common Security -->
|
<!-- MuYu Common Security -->
|
||||||
<dependency>
|
<dependency>
|
||||||
<groupId>com.muyu</groupId>
|
<groupId>com.muyu</groupId>
|
||||||
<artifactId>muyu-common-security</artifactId>
|
<artifactId>cloud-common-security</artifactId>
|
||||||
</dependency>
|
</dependency>
|
||||||
|
|
||||||
</dependencies>
|
</dependencies>
|
|
@ -4,15 +4,15 @@
|
||||||
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
|
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
|
||||||
<parent>
|
<parent>
|
||||||
<groupId>com.muyu</groupId>
|
<groupId>com.muyu</groupId>
|
||||||
<artifactId>muyu-common</artifactId>
|
<artifactId>cloud-common</artifactId>
|
||||||
<version>3.6.3</version>
|
<version>3.6.3</version>
|
||||||
</parent>
|
</parent>
|
||||||
<modelVersion>4.0.0</modelVersion>
|
<modelVersion>4.0.0</modelVersion>
|
||||||
|
|
||||||
<artifactId>muyu-common-datasource</artifactId>
|
<artifactId>cloud-common-datasource</artifactId>
|
||||||
|
|
||||||
<description>
|
<description>
|
||||||
muyu-common-datasource多数据源
|
cloud-common-datasource多数据源
|
||||||
</description>
|
</description>
|
||||||
|
|
||||||
<dependencies>
|
<dependencies>
|
|
@ -4,15 +4,15 @@
|
||||||
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
|
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
|
||||||
<parent>
|
<parent>
|
||||||
<groupId>com.muyu</groupId>
|
<groupId>com.muyu</groupId>
|
||||||
<artifactId>muyu-common</artifactId>
|
<artifactId>cloud-common</artifactId>
|
||||||
<version>3.6.3</version>
|
<version>3.6.3</version>
|
||||||
</parent>
|
</parent>
|
||||||
<modelVersion>4.0.0</modelVersion>
|
<modelVersion>4.0.0</modelVersion>
|
||||||
|
|
||||||
<artifactId>muyu-common-log</artifactId>
|
<artifactId>cloud-common-log</artifactId>
|
||||||
|
|
||||||
<description>
|
<description>
|
||||||
muyu-common-log日志记录
|
cloud-common-log日志记录
|
||||||
</description>
|
</description>
|
||||||
|
|
||||||
<dependencies>
|
<dependencies>
|
||||||
|
@ -20,7 +20,7 @@
|
||||||
<!-- MuYu Common Security -->
|
<!-- MuYu Common Security -->
|
||||||
<dependency>
|
<dependency>
|
||||||
<groupId>com.muyu</groupId>
|
<groupId>com.muyu</groupId>
|
||||||
<artifactId>muyu-common-security</artifactId>
|
<artifactId>cloud-common-security</artifactId>
|
||||||
</dependency>
|
</dependency>
|
||||||
|
|
||||||
</dependencies>
|
</dependencies>
|
Some files were not shown because too many files have changed in this diff Show More
Loading…
Reference in New Issue