diff --git a/agileboot-boot-start/pom.xml b/agileboot-boot-start/pom.xml deleted file mode 100644 index 84ee092..0000000 --- a/agileboot-boot-start/pom.xml +++ /dev/null @@ -1,52 +0,0 @@ - - 4.0.0 - - com.agileboot - agileboot - 1.0.0 - - agileboot-boot-start - - - - com.agileboot - agileboot-system-base - 1.0.0 - - - com.agileboot - wol-module-ai - 1.0.0 - - - com.agileboot - wol-auth - 1.0.0 - - - com.agileboot - wol-codegenerator - 1.0.0 - - - - - ${project.artifactId} - - - org.springframework.boot - spring-boot-maven-plugin - ${spring.boot.version} - - - - repackage - - - - - - - - diff --git a/agileboot-boot-start/src/main/java/com/agileboot/AgilebootBootApplication.java b/agileboot-boot-start/src/main/java/com/agileboot/AgilebootBootApplication.java deleted file mode 100644 index 6a97292..0000000 --- a/agileboot-boot-start/src/main/java/com/agileboot/AgilebootBootApplication.java +++ /dev/null @@ -1,24 +0,0 @@ -package com.agileboot; - -import org.springframework.boot.SpringApplication; -import org.springframework.boot.autoconfigure.SpringBootApplication; - -/** - * @Author cuiJiaWang - * @Create 2025-08-12 18:07 - */ -@SpringBootApplication(scanBasePackages = "com.agileboot.*") -public class AgilebootBootApplication { - - public static void main(String[] args) { - SpringApplication.run(AgilebootBootApplication.class, args); - String successMsg = " ____ _ _ __ _ _ \n" - + " / ___| | |_ __ _ _ __ | |_ _ _ _ __ ___ _ _ ___ ___ ___ ___ ___ / _| _ _ | || |\n" - + " \\___ \\ | __|/ _` || '__|| __| | | | || '_ \\ / __|| | | | / __|/ __|/ _ \\/ __|/ __|| |_ | | | || || |\n" - + " ___) || |_| (_| || | | |_ | |_| || |_) | \\__ \\| |_| || (__| (__| __/\\__ \\\\__ \\| _|| |_| || ||_|\n" - + " |____/ \\__|\\__,_||_| \\__| \\__,_|| .__/ |___/ \\__,_| \\___|\\___|\\___||___/|___/|_| \\__,_||_|(_)\n" - + " |_| "; - - System.out.println(successMsg); - } -} diff --git a/agileboot-boot-start/src/main/resources/application-dev.yml b/agileboot-boot-start/src/main/resources/application-dev.yml deleted file mode 100644 index dd785b2..0000000 --- a/agileboot-boot-start/src/main/resources/application-dev.yml +++ /dev/null @@ -1,79 +0,0 @@ -# 数据源配置 -spring: - datasource: - type: com.alibaba.druid.pool.DruidDataSource - driverClassName: com.mysql.cj.jdbc.Driver - druid: - webStatFilter: - enabled: true - statViewServlet: - enabled: true - # 设置白名单,不填则允许所有访问 - allow: - url-pattern: /druid/* - # 控制台管理用户名和密码 - login-username: agileboot - login-password: 123456 - filter: - stat: - enabled: true - # 慢SQL记录 - log-slow-sql: true - slow-sql-millis: 1000 - merge-sql: true - wall: - config: - multi-statement-allow: true - dynamic: - primary: master - strict: false - druid: - # 初始连接数 - initialSize: 5 - # 最小连接池数量 - minIdle: 10 - # 最大连接池数量 - maxActive: 20 - # 配置获取连接等待超时的时间 - maxWait: 60000 - # 配置间隔多久才进行一次检测,检测需要关闭的空闲连接,单位是毫秒 - timeBetweenEvictionRunsMillis: 60000 - # 配置一个连接在池中最小生存的时间,单位是毫秒 - minEvictableIdleTimeMillis: 300000 - # 配置一个连接在池中最大生存的时间,单位是毫秒 - maxEvictableIdleTimeMillis: 900000 - # 配置检测连接是否有效 - validationQuery: SELECT 1 FROM DUAL - testWhileIdle: true - testOnBorrow: false - testOnReturn: false - datasource: - master: - url: jdbc:mysql://121.41.64.98:3306/agileboot?useUnicode=true&characterEncoding=utf8&zeroDateTimeBehavior=convertToNull&useSSL=true&serverTimezone=GMT%2B8&sslMode=REQUIRED - username: agileboot - password: 123456 - - data: - redis: - database: 3 - host: 121.41.64.98 - port: 6379 - password: 'Wyy123123' -jasypt: - encryptor: - password: ${JASYPT_ENCRYPTOR_PASSWORD:} - -# Sa-Token配置 -sa-token: - # token名称 (同时也是cookie名称) - token-name: Authorization - # 开启内网服务调用鉴权(不允许越过gateway访问内网服务 保障服务安全) - check-same-token: false - # 是否允许同一账号并发登录 (为true时允许一起登录, 为false时新登录挤掉旧登录) - is-concurrent: true - # 在多人登录同一账号时,是否共用一个token (为true时所有登录共用一个token, 为false时每次登录新建一个token) - is-share: true - # 是否输出操作日志 - is-log: true - # jwt秘钥 - jwt-secret-key: abcdefghijklmnopqrstuvwxyz diff --git a/agileboot-boot-start/src/main/resources/application.yml b/agileboot-boot-start/src/main/resources/application.yml deleted file mode 100644 index 75357c9..0000000 --- a/agileboot-boot-start/src/main/resources/application.yml +++ /dev/null @@ -1,13 +0,0 @@ -server: - port: 18080 - servlet: - context-path: / - tomcat: - uri-encoding: UTF-8 # tomcat的URI编码 - accept-count: 1000 # 连接数满后的排队数,默认为100 - threads: - max: 800 # tomcat最大线程数,默认为200 - min-spare: 100 # Tomcat启动初始化的线程数,默认值10 -spring: - profiles: - active: dev diff --git a/agileboot-boot-start/src/main/resources/banner.txt b/agileboot-boot-start/src/main/resources/banner.txt deleted file mode 100644 index a6699eb..0000000 --- a/agileboot-boot-start/src/main/resources/banner.txt +++ /dev/null @@ -1,8 +0,0 @@ -Application Version: ${revision} -Spring Boot Version: ${spring-boot.version} - _ _ _ ____ _ - / \ __ _ (_)| | ___ | __ ) ___ ___ | |_ - / _ \ / _` || || | / _ \| _ \ / _ \ / _ \ | __| - / ___ \| (_| || || || __/| |_) || (_) || (_) || |_ - /_/ \_\\__, ||_||_| \___||____/ \___/ \___/ \__| - |___/ diff --git a/agileboot-cloud/agileboot-cloud-start/pom.xml b/agileboot-cloud/agileboot-cloud-start/pom.xml deleted file mode 100644 index 3913b0a..0000000 --- a/agileboot-cloud/agileboot-cloud-start/pom.xml +++ /dev/null @@ -1,18 +0,0 @@ - - 4.0.0 - - com.agileboot - agileboot-cloud - 1.0.0 - - agileboot-cloud-start - - - - com.agileboot - wol-common-web - ${revision} - - - diff --git a/agileboot-cloud/agileboot-cloud-start/src/main/java/com/agileboot/AgilebootCloudApplication.java b/agileboot-cloud/agileboot-cloud-start/src/main/java/com/agileboot/AgilebootCloudApplication.java deleted file mode 100644 index 70201cf..0000000 --- a/agileboot-cloud/agileboot-cloud-start/src/main/java/com/agileboot/AgilebootCloudApplication.java +++ /dev/null @@ -1,11 +0,0 @@ -package com.agileboot; - -import org.springframework.boot.autoconfigure.SpringBootApplication; - -/** - * @Author cuiJiaWang - * @Create 2025-08-12 17:35 - */ -@SpringBootApplication -public class AgilebootCloudApplication { -} diff --git a/agileboot-cloud/agileboot-cloud-start/src/main/resources/Dockerfile b/agileboot-cloud/agileboot-cloud-start/src/main/resources/Dockerfile deleted file mode 100644 index 8b13789..0000000 --- a/agileboot-cloud/agileboot-cloud-start/src/main/resources/Dockerfile +++ /dev/null @@ -1 +0,0 @@ - diff --git a/agileboot-cloud/agileboot-cloud-start/src/main/resources/application.yml b/agileboot-cloud/agileboot-cloud-start/src/main/resources/application.yml deleted file mode 100644 index e69de29..0000000 diff --git a/agileboot-cloud/pom.xml b/agileboot-cloud/pom.xml deleted file mode 100644 index 23cfc7f..0000000 --- a/agileboot-cloud/pom.xml +++ /dev/null @@ -1,15 +0,0 @@ - - 4.0.0 - - com.agileboot - agileboot - 1.0.0 - - agileboot-cloud - pom - - agileboot-cloud-start - - - diff --git a/agileboot-system/pom.xml b/agileboot-system/pom.xml index 048019f..fe1fb34 100644 --- a/agileboot-system/pom.xml +++ b/agileboot-system/pom.xml @@ -10,24 +10,8 @@ pom - wol-auth - agileboot-system-base - wol-gateway + wol-domain + wol-api - - - - com.agileboot - agileboot-system-base - 1.0.0 - - - com.agileboot - wol-common-nacos - 1.0.0 - - - - diff --git a/wol-api/pom.xml b/agileboot-system/wol-api/pom.xml similarity index 91% rename from wol-api/pom.xml rename to agileboot-system/wol-api/pom.xml index d8e535a..f5801ec 100644 --- a/wol-api/pom.xml +++ b/agileboot-system/wol-api/pom.xml @@ -5,7 +5,7 @@ 4.0.0 com.agileboot - agileboot + agileboot-system 1.0.0 @@ -19,4 +19,4 @@ - \ No newline at end of file + diff --git a/wol-api/src/main/java/com/agileboot/api/user/pojo/RemoteSysUserService.java b/agileboot-system/wol-api/src/main/java/com/agileboot/api/user/pojo/RemoteSysUserService.java similarity index 100% rename from wol-api/src/main/java/com/agileboot/api/user/pojo/RemoteSysUserService.java rename to agileboot-system/wol-api/src/main/java/com/agileboot/api/user/pojo/RemoteSysUserService.java diff --git a/wol-api/src/main/java/com/agileboot/api/user/user b/agileboot-system/wol-api/src/main/java/com/agileboot/api/user/user similarity index 100% rename from wol-api/src/main/java/com/agileboot/api/user/user rename to agileboot-system/wol-api/src/main/java/com/agileboot/api/user/user diff --git a/wol-domain/pom.xml b/agileboot-system/wol-domain/pom.xml similarity index 95% rename from wol-domain/pom.xml rename to agileboot-system/wol-domain/pom.xml index a29a59d..9a443f0 100644 --- a/wol-domain/pom.xml +++ b/agileboot-system/wol-domain/pom.xml @@ -5,7 +5,7 @@ 4.0.0 com.agileboot - agileboot + agileboot-system 1.0.0 @@ -34,4 +34,4 @@ provided - \ No newline at end of file + diff --git a/wol-domain/src/main/java/com/agileboot/system/client/entity/SysClient.java b/agileboot-system/wol-domain/src/main/java/com/agileboot/system/client/entity/SysClient.java similarity index 100% rename from wol-domain/src/main/java/com/agileboot/system/client/entity/SysClient.java rename to agileboot-system/wol-domain/src/main/java/com/agileboot/system/client/entity/SysClient.java diff --git a/wol-domain/src/main/java/com/agileboot/system/client/vo/SysClientVO.java b/agileboot-system/wol-domain/src/main/java/com/agileboot/system/client/vo/SysClientVO.java similarity index 100% rename from wol-domain/src/main/java/com/agileboot/system/client/vo/SysClientVO.java rename to agileboot-system/wol-domain/src/main/java/com/agileboot/system/client/vo/SysClientVO.java diff --git a/wol-domain/src/main/java/com/agileboot/system/config/dto/ConfigQuery.java b/agileboot-system/wol-domain/src/main/java/com/agileboot/system/config/dto/ConfigQuery.java similarity index 100% rename from wol-domain/src/main/java/com/agileboot/system/config/dto/ConfigQuery.java rename to agileboot-system/wol-domain/src/main/java/com/agileboot/system/config/dto/ConfigQuery.java diff --git a/wol-domain/src/main/java/com/agileboot/system/config/dto/ConfigUpdate.java b/agileboot-system/wol-domain/src/main/java/com/agileboot/system/config/dto/ConfigUpdate.java similarity index 100% rename from wol-domain/src/main/java/com/agileboot/system/config/dto/ConfigUpdate.java rename to agileboot-system/wol-domain/src/main/java/com/agileboot/system/config/dto/ConfigUpdate.java diff --git a/wol-domain/src/main/java/com/agileboot/system/config/entity/SysConfig.java b/agileboot-system/wol-domain/src/main/java/com/agileboot/system/config/entity/SysConfig.java similarity index 100% rename from wol-domain/src/main/java/com/agileboot/system/config/entity/SysConfig.java rename to agileboot-system/wol-domain/src/main/java/com/agileboot/system/config/entity/SysConfig.java diff --git a/wol-domain/src/main/java/com/agileboot/system/config/vo/ConfigVO.java b/agileboot-system/wol-domain/src/main/java/com/agileboot/system/config/vo/ConfigVO.java similarity index 100% rename from wol-domain/src/main/java/com/agileboot/system/config/vo/ConfigVO.java rename to agileboot-system/wol-domain/src/main/java/com/agileboot/system/config/vo/ConfigVO.java diff --git a/wol-domain/src/main/java/com/agileboot/system/dept/dto/AddDeptDTO.java b/agileboot-system/wol-domain/src/main/java/com/agileboot/system/dept/dto/AddDeptDTO.java similarity index 100% rename from wol-domain/src/main/java/com/agileboot/system/dept/dto/AddDeptDTO.java rename to agileboot-system/wol-domain/src/main/java/com/agileboot/system/dept/dto/AddDeptDTO.java diff --git a/wol-domain/src/main/java/com/agileboot/system/dept/dto/DeptQuery.java b/agileboot-system/wol-domain/src/main/java/com/agileboot/system/dept/dto/DeptQuery.java similarity index 100% rename from wol-domain/src/main/java/com/agileboot/system/dept/dto/DeptQuery.java rename to agileboot-system/wol-domain/src/main/java/com/agileboot/system/dept/dto/DeptQuery.java diff --git a/wol-domain/src/main/java/com/agileboot/system/dept/dto/UpdateDeptDTO.java b/agileboot-system/wol-domain/src/main/java/com/agileboot/system/dept/dto/UpdateDeptDTO.java similarity index 100% rename from wol-domain/src/main/java/com/agileboot/system/dept/dto/UpdateDeptDTO.java rename to agileboot-system/wol-domain/src/main/java/com/agileboot/system/dept/dto/UpdateDeptDTO.java diff --git a/wol-domain/src/main/java/com/agileboot/system/dept/entity/SysDept.java b/agileboot-system/wol-domain/src/main/java/com/agileboot/system/dept/entity/SysDept.java similarity index 100% rename from wol-domain/src/main/java/com/agileboot/system/dept/entity/SysDept.java rename to agileboot-system/wol-domain/src/main/java/com/agileboot/system/dept/entity/SysDept.java diff --git a/wol-domain/src/main/java/com/agileboot/system/dept/vo/DeptVO.java b/agileboot-system/wol-domain/src/main/java/com/agileboot/system/dept/vo/DeptVO.java similarity index 100% rename from wol-domain/src/main/java/com/agileboot/system/dept/vo/DeptVO.java rename to agileboot-system/wol-domain/src/main/java/com/agileboot/system/dept/vo/DeptVO.java diff --git a/wol-domain/src/main/java/com/agileboot/system/enums/ConfigKeyEnum.java b/agileboot-system/wol-domain/src/main/java/com/agileboot/system/enums/ConfigKeyEnum.java similarity index 100% rename from wol-domain/src/main/java/com/agileboot/system/enums/ConfigKeyEnum.java rename to agileboot-system/wol-domain/src/main/java/com/agileboot/system/enums/ConfigKeyEnum.java diff --git a/wol-domain/src/main/java/com/agileboot/system/log/dto/LoginLogQuery.java b/agileboot-system/wol-domain/src/main/java/com/agileboot/system/log/dto/LoginLogQuery.java similarity index 100% rename from wol-domain/src/main/java/com/agileboot/system/log/dto/LoginLogQuery.java rename to agileboot-system/wol-domain/src/main/java/com/agileboot/system/log/dto/LoginLogQuery.java diff --git a/wol-domain/src/main/java/com/agileboot/system/log/dto/OperationLogQuery.java b/agileboot-system/wol-domain/src/main/java/com/agileboot/system/log/dto/OperationLogQuery.java similarity index 100% rename from wol-domain/src/main/java/com/agileboot/system/log/dto/OperationLogQuery.java rename to agileboot-system/wol-domain/src/main/java/com/agileboot/system/log/dto/OperationLogQuery.java diff --git a/wol-domain/src/main/java/com/agileboot/system/log/entity/SysLoginInfo.java b/agileboot-system/wol-domain/src/main/java/com/agileboot/system/log/entity/SysLoginInfo.java similarity index 100% rename from wol-domain/src/main/java/com/agileboot/system/log/entity/SysLoginInfo.java rename to agileboot-system/wol-domain/src/main/java/com/agileboot/system/log/entity/SysLoginInfo.java diff --git a/wol-domain/src/main/java/com/agileboot/system/log/entity/SysOperationLog.java b/agileboot-system/wol-domain/src/main/java/com/agileboot/system/log/entity/SysOperationLog.java similarity index 100% rename from wol-domain/src/main/java/com/agileboot/system/log/entity/SysOperationLog.java rename to agileboot-system/wol-domain/src/main/java/com/agileboot/system/log/entity/SysOperationLog.java diff --git a/wol-domain/src/main/java/com/agileboot/system/log/vo/LoginLogVO.java b/agileboot-system/wol-domain/src/main/java/com/agileboot/system/log/vo/LoginLogVO.java similarity index 100% rename from wol-domain/src/main/java/com/agileboot/system/log/vo/LoginLogVO.java rename to agileboot-system/wol-domain/src/main/java/com/agileboot/system/log/vo/LoginLogVO.java diff --git a/wol-domain/src/main/java/com/agileboot/system/log/vo/OperationLogVO.java b/agileboot-system/wol-domain/src/main/java/com/agileboot/system/log/vo/OperationLogVO.java similarity index 100% rename from wol-domain/src/main/java/com/agileboot/system/log/vo/OperationLogVO.java rename to agileboot-system/wol-domain/src/main/java/com/agileboot/system/log/vo/OperationLogVO.java diff --git a/wol-domain/src/main/java/com/agileboot/system/menu/dto/AddMenuDTO.java b/agileboot-system/wol-domain/src/main/java/com/agileboot/system/menu/dto/AddMenuDTO.java similarity index 100% rename from wol-domain/src/main/java/com/agileboot/system/menu/dto/AddMenuDTO.java rename to agileboot-system/wol-domain/src/main/java/com/agileboot/system/menu/dto/AddMenuDTO.java diff --git a/wol-domain/src/main/java/com/agileboot/system/menu/dto/ExtraIconDTO.java b/agileboot-system/wol-domain/src/main/java/com/agileboot/system/menu/dto/ExtraIconDTO.java similarity index 100% rename from wol-domain/src/main/java/com/agileboot/system/menu/dto/ExtraIconDTO.java rename to agileboot-system/wol-domain/src/main/java/com/agileboot/system/menu/dto/ExtraIconDTO.java diff --git a/wol-domain/src/main/java/com/agileboot/system/menu/dto/MenuDTO.java b/agileboot-system/wol-domain/src/main/java/com/agileboot/system/menu/dto/MenuDTO.java similarity index 100% rename from wol-domain/src/main/java/com/agileboot/system/menu/dto/MenuDTO.java rename to agileboot-system/wol-domain/src/main/java/com/agileboot/system/menu/dto/MenuDTO.java diff --git a/wol-domain/src/main/java/com/agileboot/system/menu/dto/MenuDetailDTO.java b/agileboot-system/wol-domain/src/main/java/com/agileboot/system/menu/dto/MenuDetailDTO.java similarity index 100% rename from wol-domain/src/main/java/com/agileboot/system/menu/dto/MenuDetailDTO.java rename to agileboot-system/wol-domain/src/main/java/com/agileboot/system/menu/dto/MenuDetailDTO.java diff --git a/wol-domain/src/main/java/com/agileboot/system/menu/dto/MenuQuery.java b/agileboot-system/wol-domain/src/main/java/com/agileboot/system/menu/dto/MenuQuery.java similarity index 100% rename from wol-domain/src/main/java/com/agileboot/system/menu/dto/MenuQuery.java rename to agileboot-system/wol-domain/src/main/java/com/agileboot/system/menu/dto/MenuQuery.java diff --git a/wol-domain/src/main/java/com/agileboot/system/menu/dto/MetaDTO.java b/agileboot-system/wol-domain/src/main/java/com/agileboot/system/menu/dto/MetaDTO.java similarity index 100% rename from wol-domain/src/main/java/com/agileboot/system/menu/dto/MetaDTO.java rename to agileboot-system/wol-domain/src/main/java/com/agileboot/system/menu/dto/MetaDTO.java diff --git a/wol-domain/src/main/java/com/agileboot/system/menu/dto/TransitionDTO.java b/agileboot-system/wol-domain/src/main/java/com/agileboot/system/menu/dto/TransitionDTO.java similarity index 100% rename from wol-domain/src/main/java/com/agileboot/system/menu/dto/TransitionDTO.java rename to agileboot-system/wol-domain/src/main/java/com/agileboot/system/menu/dto/TransitionDTO.java diff --git a/wol-domain/src/main/java/com/agileboot/system/menu/dto/UpdateMenuDTO.java b/agileboot-system/wol-domain/src/main/java/com/agileboot/system/menu/dto/UpdateMenuDTO.java similarity index 100% rename from wol-domain/src/main/java/com/agileboot/system/menu/dto/UpdateMenuDTO.java rename to agileboot-system/wol-domain/src/main/java/com/agileboot/system/menu/dto/UpdateMenuDTO.java diff --git a/wol-domain/src/main/java/com/agileboot/system/menu/entity/SysMenu.java b/agileboot-system/wol-domain/src/main/java/com/agileboot/system/menu/entity/SysMenu.java similarity index 100% rename from wol-domain/src/main/java/com/agileboot/system/menu/entity/SysMenu.java rename to agileboot-system/wol-domain/src/main/java/com/agileboot/system/menu/entity/SysMenu.java diff --git a/wol-domain/src/main/java/com/agileboot/system/menu/vo/RouterVO.java b/agileboot-system/wol-domain/src/main/java/com/agileboot/system/menu/vo/RouterVO.java similarity index 100% rename from wol-domain/src/main/java/com/agileboot/system/menu/vo/RouterVO.java rename to agileboot-system/wol-domain/src/main/java/com/agileboot/system/menu/vo/RouterVO.java diff --git a/wol-domain/src/main/java/com/agileboot/system/monitor/vo/CpuInfo.java b/agileboot-system/wol-domain/src/main/java/com/agileboot/system/monitor/vo/CpuInfo.java similarity index 100% rename from wol-domain/src/main/java/com/agileboot/system/monitor/vo/CpuInfo.java rename to agileboot-system/wol-domain/src/main/java/com/agileboot/system/monitor/vo/CpuInfo.java diff --git a/wol-domain/src/main/java/com/agileboot/system/monitor/vo/DiskInfo.java b/agileboot-system/wol-domain/src/main/java/com/agileboot/system/monitor/vo/DiskInfo.java similarity index 100% rename from wol-domain/src/main/java/com/agileboot/system/monitor/vo/DiskInfo.java rename to agileboot-system/wol-domain/src/main/java/com/agileboot/system/monitor/vo/DiskInfo.java diff --git a/wol-domain/src/main/java/com/agileboot/system/monitor/vo/JvmInfo.java b/agileboot-system/wol-domain/src/main/java/com/agileboot/system/monitor/vo/JvmInfo.java similarity index 100% rename from wol-domain/src/main/java/com/agileboot/system/monitor/vo/JvmInfo.java rename to agileboot-system/wol-domain/src/main/java/com/agileboot/system/monitor/vo/JvmInfo.java diff --git a/wol-domain/src/main/java/com/agileboot/system/monitor/vo/MemoryInfo.java b/agileboot-system/wol-domain/src/main/java/com/agileboot/system/monitor/vo/MemoryInfo.java similarity index 100% rename from wol-domain/src/main/java/com/agileboot/system/monitor/vo/MemoryInfo.java rename to agileboot-system/wol-domain/src/main/java/com/agileboot/system/monitor/vo/MemoryInfo.java diff --git a/wol-domain/src/main/java/com/agileboot/system/monitor/vo/OnlineUserVO.java b/agileboot-system/wol-domain/src/main/java/com/agileboot/system/monitor/vo/OnlineUserVO.java similarity index 100% rename from wol-domain/src/main/java/com/agileboot/system/monitor/vo/OnlineUserVO.java rename to agileboot-system/wol-domain/src/main/java/com/agileboot/system/monitor/vo/OnlineUserVO.java diff --git a/wol-domain/src/main/java/com/agileboot/system/monitor/vo/RedisCacheInfoVO.java b/agileboot-system/wol-domain/src/main/java/com/agileboot/system/monitor/vo/RedisCacheInfoVO.java similarity index 100% rename from wol-domain/src/main/java/com/agileboot/system/monitor/vo/RedisCacheInfoVO.java rename to agileboot-system/wol-domain/src/main/java/com/agileboot/system/monitor/vo/RedisCacheInfoVO.java diff --git a/wol-domain/src/main/java/com/agileboot/system/monitor/vo/ServerInfo.java b/agileboot-system/wol-domain/src/main/java/com/agileboot/system/monitor/vo/ServerInfo.java similarity index 100% rename from wol-domain/src/main/java/com/agileboot/system/monitor/vo/ServerInfo.java rename to agileboot-system/wol-domain/src/main/java/com/agileboot/system/monitor/vo/ServerInfo.java diff --git a/wol-domain/src/main/java/com/agileboot/system/monitor/vo/SystemInfo.java b/agileboot-system/wol-domain/src/main/java/com/agileboot/system/monitor/vo/SystemInfo.java similarity index 100% rename from wol-domain/src/main/java/com/agileboot/system/monitor/vo/SystemInfo.java rename to agileboot-system/wol-domain/src/main/java/com/agileboot/system/monitor/vo/SystemInfo.java diff --git a/wol-domain/src/main/java/com/agileboot/system/notice/dto/NoticeAddDTO.java b/agileboot-system/wol-domain/src/main/java/com/agileboot/system/notice/dto/NoticeAddDTO.java similarity index 100% rename from wol-domain/src/main/java/com/agileboot/system/notice/dto/NoticeAddDTO.java rename to agileboot-system/wol-domain/src/main/java/com/agileboot/system/notice/dto/NoticeAddDTO.java diff --git a/wol-domain/src/main/java/com/agileboot/system/notice/dto/NoticeQuery.java b/agileboot-system/wol-domain/src/main/java/com/agileboot/system/notice/dto/NoticeQuery.java similarity index 100% rename from wol-domain/src/main/java/com/agileboot/system/notice/dto/NoticeQuery.java rename to agileboot-system/wol-domain/src/main/java/com/agileboot/system/notice/dto/NoticeQuery.java diff --git a/wol-domain/src/main/java/com/agileboot/system/notice/dto/NoticeUpdateDTO.java b/agileboot-system/wol-domain/src/main/java/com/agileboot/system/notice/dto/NoticeUpdateDTO.java similarity index 100% rename from wol-domain/src/main/java/com/agileboot/system/notice/dto/NoticeUpdateDTO.java rename to agileboot-system/wol-domain/src/main/java/com/agileboot/system/notice/dto/NoticeUpdateDTO.java diff --git a/wol-domain/src/main/java/com/agileboot/system/notice/dto/NoticeVO.java b/agileboot-system/wol-domain/src/main/java/com/agileboot/system/notice/dto/NoticeVO.java similarity index 100% rename from wol-domain/src/main/java/com/agileboot/system/notice/dto/NoticeVO.java rename to agileboot-system/wol-domain/src/main/java/com/agileboot/system/notice/dto/NoticeVO.java diff --git a/wol-domain/src/main/java/com/agileboot/system/notice/entity/SysNotice.java b/agileboot-system/wol-domain/src/main/java/com/agileboot/system/notice/entity/SysNotice.java similarity index 100% rename from wol-domain/src/main/java/com/agileboot/system/notice/entity/SysNotice.java rename to agileboot-system/wol-domain/src/main/java/com/agileboot/system/notice/entity/SysNotice.java diff --git a/wol-domain/src/main/java/com/agileboot/system/post/dto/AddPostDTO.java b/agileboot-system/wol-domain/src/main/java/com/agileboot/system/post/dto/AddPostDTO.java similarity index 100% rename from wol-domain/src/main/java/com/agileboot/system/post/dto/AddPostDTO.java rename to agileboot-system/wol-domain/src/main/java/com/agileboot/system/post/dto/AddPostDTO.java diff --git a/wol-domain/src/main/java/com/agileboot/system/post/dto/PostQuery.java b/agileboot-system/wol-domain/src/main/java/com/agileboot/system/post/dto/PostQuery.java similarity index 100% rename from wol-domain/src/main/java/com/agileboot/system/post/dto/PostQuery.java rename to agileboot-system/wol-domain/src/main/java/com/agileboot/system/post/dto/PostQuery.java diff --git a/wol-domain/src/main/java/com/agileboot/system/post/dto/PostVO.java b/agileboot-system/wol-domain/src/main/java/com/agileboot/system/post/dto/PostVO.java similarity index 100% rename from wol-domain/src/main/java/com/agileboot/system/post/dto/PostVO.java rename to agileboot-system/wol-domain/src/main/java/com/agileboot/system/post/dto/PostVO.java diff --git a/wol-domain/src/main/java/com/agileboot/system/post/dto/UpdatePostDTO.java b/agileboot-system/wol-domain/src/main/java/com/agileboot/system/post/dto/UpdatePostDTO.java similarity index 100% rename from wol-domain/src/main/java/com/agileboot/system/post/dto/UpdatePostDTO.java rename to agileboot-system/wol-domain/src/main/java/com/agileboot/system/post/dto/UpdatePostDTO.java diff --git a/wol-domain/src/main/java/com/agileboot/system/post/entity/SysPost.java b/agileboot-system/wol-domain/src/main/java/com/agileboot/system/post/entity/SysPost.java similarity index 100% rename from wol-domain/src/main/java/com/agileboot/system/post/entity/SysPost.java rename to agileboot-system/wol-domain/src/main/java/com/agileboot/system/post/entity/SysPost.java diff --git a/wol-domain/src/main/java/com/agileboot/system/role/dto/AddRoleDTO.java b/agileboot-system/wol-domain/src/main/java/com/agileboot/system/role/dto/AddRoleDTO.java similarity index 100% rename from wol-domain/src/main/java/com/agileboot/system/role/dto/AddRoleDTO.java rename to agileboot-system/wol-domain/src/main/java/com/agileboot/system/role/dto/AddRoleDTO.java diff --git a/wol-domain/src/main/java/com/agileboot/system/role/dto/AllocatedRoleQuery.java b/agileboot-system/wol-domain/src/main/java/com/agileboot/system/role/dto/AllocatedRoleQuery.java similarity index 100% rename from wol-domain/src/main/java/com/agileboot/system/role/dto/AllocatedRoleQuery.java rename to agileboot-system/wol-domain/src/main/java/com/agileboot/system/role/dto/AllocatedRoleQuery.java diff --git a/wol-domain/src/main/java/com/agileboot/system/role/dto/RoleQuery.java b/agileboot-system/wol-domain/src/main/java/com/agileboot/system/role/dto/RoleQuery.java similarity index 100% rename from wol-domain/src/main/java/com/agileboot/system/role/dto/RoleQuery.java rename to agileboot-system/wol-domain/src/main/java/com/agileboot/system/role/dto/RoleQuery.java diff --git a/wol-domain/src/main/java/com/agileboot/system/role/dto/UnallocatedRoleQuery.java b/agileboot-system/wol-domain/src/main/java/com/agileboot/system/role/dto/UnallocatedRoleQuery.java similarity index 100% rename from wol-domain/src/main/java/com/agileboot/system/role/dto/UnallocatedRoleQuery.java rename to agileboot-system/wol-domain/src/main/java/com/agileboot/system/role/dto/UnallocatedRoleQuery.java diff --git a/wol-domain/src/main/java/com/agileboot/system/role/dto/UpdateDataScopeDTO.java b/agileboot-system/wol-domain/src/main/java/com/agileboot/system/role/dto/UpdateDataScopeDTO.java similarity index 100% rename from wol-domain/src/main/java/com/agileboot/system/role/dto/UpdateDataScopeDTO.java rename to agileboot-system/wol-domain/src/main/java/com/agileboot/system/role/dto/UpdateDataScopeDTO.java diff --git a/wol-domain/src/main/java/com/agileboot/system/role/dto/UpdateRoleDTO.java b/agileboot-system/wol-domain/src/main/java/com/agileboot/system/role/dto/UpdateRoleDTO.java similarity index 100% rename from wol-domain/src/main/java/com/agileboot/system/role/dto/UpdateRoleDTO.java rename to agileboot-system/wol-domain/src/main/java/com/agileboot/system/role/dto/UpdateRoleDTO.java diff --git a/wol-domain/src/main/java/com/agileboot/system/role/dto/UpdateStatusDTO.java b/agileboot-system/wol-domain/src/main/java/com/agileboot/system/role/dto/UpdateStatusDTO.java similarity index 100% rename from wol-domain/src/main/java/com/agileboot/system/role/dto/UpdateStatusDTO.java rename to agileboot-system/wol-domain/src/main/java/com/agileboot/system/role/dto/UpdateStatusDTO.java diff --git a/wol-domain/src/main/java/com/agileboot/system/role/entity/SysRole.java b/agileboot-system/wol-domain/src/main/java/com/agileboot/system/role/entity/SysRole.java similarity index 100% rename from wol-domain/src/main/java/com/agileboot/system/role/entity/SysRole.java rename to agileboot-system/wol-domain/src/main/java/com/agileboot/system/role/entity/SysRole.java diff --git a/wol-domain/src/main/java/com/agileboot/system/role/entity/SysRoleMenu.java b/agileboot-system/wol-domain/src/main/java/com/agileboot/system/role/entity/SysRoleMenu.java similarity index 100% rename from wol-domain/src/main/java/com/agileboot/system/role/entity/SysRoleMenu.java rename to agileboot-system/wol-domain/src/main/java/com/agileboot/system/role/entity/SysRoleMenu.java diff --git a/wol-domain/src/main/java/com/agileboot/system/role/vo/RoleVO.java b/agileboot-system/wol-domain/src/main/java/com/agileboot/system/role/vo/RoleVO.java similarity index 100% rename from wol-domain/src/main/java/com/agileboot/system/role/vo/RoleVO.java rename to agileboot-system/wol-domain/src/main/java/com/agileboot/system/role/vo/RoleVO.java diff --git a/wol-domain/src/main/java/com/agileboot/system/user/dto/AddUserCommand.java b/agileboot-system/wol-domain/src/main/java/com/agileboot/system/user/dto/AddUserCommand.java similarity index 100% rename from wol-domain/src/main/java/com/agileboot/system/user/dto/AddUserCommand.java rename to agileboot-system/wol-domain/src/main/java/com/agileboot/system/user/dto/AddUserCommand.java diff --git a/wol-domain/src/main/java/com/agileboot/system/user/dto/ChangeStatusCommand.java b/agileboot-system/wol-domain/src/main/java/com/agileboot/system/user/dto/ChangeStatusCommand.java similarity index 100% rename from wol-domain/src/main/java/com/agileboot/system/user/dto/ChangeStatusCommand.java rename to agileboot-system/wol-domain/src/main/java/com/agileboot/system/user/dto/ChangeStatusCommand.java diff --git a/wol-domain/src/main/java/com/agileboot/system/user/dto/ResetPasswordCommand.java b/agileboot-system/wol-domain/src/main/java/com/agileboot/system/user/dto/ResetPasswordCommand.java similarity index 100% rename from wol-domain/src/main/java/com/agileboot/system/user/dto/ResetPasswordCommand.java rename to agileboot-system/wol-domain/src/main/java/com/agileboot/system/user/dto/ResetPasswordCommand.java diff --git a/wol-domain/src/main/java/com/agileboot/system/user/dto/SearchUserQuery.java b/agileboot-system/wol-domain/src/main/java/com/agileboot/system/user/dto/SearchUserQuery.java similarity index 100% rename from wol-domain/src/main/java/com/agileboot/system/user/dto/SearchUserQuery.java rename to agileboot-system/wol-domain/src/main/java/com/agileboot/system/user/dto/SearchUserQuery.java diff --git a/wol-domain/src/main/java/com/agileboot/system/user/dto/UpdateUserCommand.java b/agileboot-system/wol-domain/src/main/java/com/agileboot/system/user/dto/UpdateUserCommand.java similarity index 100% rename from wol-domain/src/main/java/com/agileboot/system/user/dto/UpdateUserCommand.java rename to agileboot-system/wol-domain/src/main/java/com/agileboot/system/user/dto/UpdateUserCommand.java diff --git a/wol-domain/src/main/java/com/agileboot/system/user/dto/UserDetailDTO.java b/agileboot-system/wol-domain/src/main/java/com/agileboot/system/user/dto/UserDetailDTO.java similarity index 100% rename from wol-domain/src/main/java/com/agileboot/system/user/dto/UserDetailDTO.java rename to agileboot-system/wol-domain/src/main/java/com/agileboot/system/user/dto/UserDetailDTO.java diff --git a/wol-domain/src/main/java/com/agileboot/system/user/dto/UserInfo.java b/agileboot-system/wol-domain/src/main/java/com/agileboot/system/user/dto/UserInfo.java similarity index 100% rename from wol-domain/src/main/java/com/agileboot/system/user/dto/UserInfo.java rename to agileboot-system/wol-domain/src/main/java/com/agileboot/system/user/dto/UserInfo.java diff --git a/wol-domain/src/main/java/com/agileboot/system/user/entity/SysUser.java b/agileboot-system/wol-domain/src/main/java/com/agileboot/system/user/entity/SysUser.java similarity index 100% rename from wol-domain/src/main/java/com/agileboot/system/user/entity/SysUser.java rename to agileboot-system/wol-domain/src/main/java/com/agileboot/system/user/entity/SysUser.java diff --git a/pom.xml b/pom.xml index 617ba48..b8f04ee 100644 --- a/pom.xml +++ b/pom.xml @@ -17,10 +17,8 @@ agileboot-common agileboot-system - - - wol-domain - wol-api + wol-auth + wol-gateway wol-modules pom diff --git a/agileboot-system/wol-auth/pom.xml b/wol-auth/pom.xml similarity index 94% rename from agileboot-system/wol-auth/pom.xml rename to wol-auth/pom.xml index 2e2dd60..ecee2da 100644 --- a/agileboot-system/wol-auth/pom.xml +++ b/wol-auth/pom.xml @@ -5,7 +5,7 @@ 4.0.0 com.agileboot - agileboot-system + agileboot 1.0.0 @@ -27,6 +27,7 @@ com.agileboot agileboot-system-base + ${project.version} diff --git a/agileboot-system/wol-auth/src/main/java/com/agileboot/auth/WolAuthApplication.java b/wol-auth/src/main/java/com/agileboot/auth/WolAuthApplication.java similarity index 93% rename from agileboot-system/wol-auth/src/main/java/com/agileboot/auth/WolAuthApplication.java rename to wol-auth/src/main/java/com/agileboot/auth/WolAuthApplication.java index 49176fc..4472bd3 100644 --- a/agileboot-system/wol-auth/src/main/java/com/agileboot/auth/WolAuthApplication.java +++ b/wol-auth/src/main/java/com/agileboot/auth/WolAuthApplication.java @@ -7,9 +7,9 @@ import org.springframework.boot.autoconfigure.SpringBootApplication; * @Author cuiJiaWang * @Create 2025-08-12 18:07 */ -@SpringBootApplication(scanBasePackages = "com.agileboot.*") +@SpringBootApplication(scanBasePackages = {"com.agileboot.auth", "com.agileboot.system"}) public class WolAuthApplication { - + public static void main(String[] args) { SpringApplication.run(WolAuthApplication.class, args); String successMsg = " ____ _ _ __ _ _ \n" diff --git a/agileboot-system/wol-auth/src/main/java/com/agileboot/auth/captcha/UnsignedMathGenerator.java b/wol-auth/src/main/java/com/agileboot/auth/captcha/UnsignedMathGenerator.java similarity index 100% rename from agileboot-system/wol-auth/src/main/java/com/agileboot/auth/captcha/UnsignedMathGenerator.java rename to wol-auth/src/main/java/com/agileboot/auth/captcha/UnsignedMathGenerator.java diff --git a/agileboot-system/wol-auth/src/main/java/com/agileboot/auth/config/AuthConfig.java b/wol-auth/src/main/java/com/agileboot/auth/config/AuthConfig.java similarity index 100% rename from agileboot-system/wol-auth/src/main/java/com/agileboot/auth/config/AuthConfig.java rename to wol-auth/src/main/java/com/agileboot/auth/config/AuthConfig.java diff --git a/agileboot-system/wol-auth/src/main/java/com/agileboot/auth/config/CaptchaConfig.java b/wol-auth/src/main/java/com/agileboot/auth/config/CaptchaConfig.java similarity index 100% rename from agileboot-system/wol-auth/src/main/java/com/agileboot/auth/config/CaptchaConfig.java rename to wol-auth/src/main/java/com/agileboot/auth/config/CaptchaConfig.java diff --git a/agileboot-system/wol-auth/src/main/java/com/agileboot/auth/controller/AuthController.java b/wol-auth/src/main/java/com/agileboot/auth/controller/AuthController.java similarity index 100% rename from agileboot-system/wol-auth/src/main/java/com/agileboot/auth/controller/AuthController.java rename to wol-auth/src/main/java/com/agileboot/auth/controller/AuthController.java diff --git a/agileboot-system/wol-auth/src/main/java/com/agileboot/auth/controller/CaptchaController.java b/wol-auth/src/main/java/com/agileboot/auth/controller/CaptchaController.java similarity index 100% rename from agileboot-system/wol-auth/src/main/java/com/agileboot/auth/controller/CaptchaController.java rename to wol-auth/src/main/java/com/agileboot/auth/controller/CaptchaController.java diff --git a/agileboot-system/wol-auth/src/main/java/com/agileboot/auth/enums/CaptchaCategory.java b/wol-auth/src/main/java/com/agileboot/auth/enums/CaptchaCategory.java similarity index 100% rename from agileboot-system/wol-auth/src/main/java/com/agileboot/auth/enums/CaptchaCategory.java rename to wol-auth/src/main/java/com/agileboot/auth/enums/CaptchaCategory.java diff --git a/agileboot-system/wol-auth/src/main/java/com/agileboot/auth/enums/CaptchaType.java b/wol-auth/src/main/java/com/agileboot/auth/enums/CaptchaType.java similarity index 100% rename from agileboot-system/wol-auth/src/main/java/com/agileboot/auth/enums/CaptchaType.java rename to wol-auth/src/main/java/com/agileboot/auth/enums/CaptchaType.java diff --git a/agileboot-system/wol-auth/src/main/java/com/agileboot/auth/pojo/dto/LoginBody.java b/wol-auth/src/main/java/com/agileboot/auth/pojo/dto/LoginBody.java similarity index 100% rename from agileboot-system/wol-auth/src/main/java/com/agileboot/auth/pojo/dto/LoginBody.java rename to wol-auth/src/main/java/com/agileboot/auth/pojo/dto/LoginBody.java diff --git a/agileboot-system/wol-auth/src/main/java/com/agileboot/auth/pojo/dto/RegisterBody.java b/wol-auth/src/main/java/com/agileboot/auth/pojo/dto/RegisterBody.java similarity index 100% rename from agileboot-system/wol-auth/src/main/java/com/agileboot/auth/pojo/dto/RegisterBody.java rename to wol-auth/src/main/java/com/agileboot/auth/pojo/dto/RegisterBody.java diff --git a/agileboot-system/wol-auth/src/main/java/com/agileboot/auth/pojo/form/EmailLoginBody.java b/wol-auth/src/main/java/com/agileboot/auth/pojo/form/EmailLoginBody.java similarity index 100% rename from agileboot-system/wol-auth/src/main/java/com/agileboot/auth/pojo/form/EmailLoginBody.java rename to wol-auth/src/main/java/com/agileboot/auth/pojo/form/EmailLoginBody.java diff --git a/agileboot-system/wol-auth/src/main/java/com/agileboot/auth/pojo/form/MiniappLoginBody.java b/wol-auth/src/main/java/com/agileboot/auth/pojo/form/MiniappLoginBody.java similarity index 100% rename from agileboot-system/wol-auth/src/main/java/com/agileboot/auth/pojo/form/MiniappLoginBody.java rename to wol-auth/src/main/java/com/agileboot/auth/pojo/form/MiniappLoginBody.java diff --git a/agileboot-system/wol-auth/src/main/java/com/agileboot/auth/pojo/form/PasswordLoginBody.java b/wol-auth/src/main/java/com/agileboot/auth/pojo/form/PasswordLoginBody.java similarity index 100% rename from agileboot-system/wol-auth/src/main/java/com/agileboot/auth/pojo/form/PasswordLoginBody.java rename to wol-auth/src/main/java/com/agileboot/auth/pojo/form/PasswordLoginBody.java diff --git a/agileboot-system/wol-auth/src/main/java/com/agileboot/auth/pojo/form/RegisterBody.java b/wol-auth/src/main/java/com/agileboot/auth/pojo/form/RegisterBody.java similarity index 100% rename from agileboot-system/wol-auth/src/main/java/com/agileboot/auth/pojo/form/RegisterBody.java rename to wol-auth/src/main/java/com/agileboot/auth/pojo/form/RegisterBody.java diff --git a/agileboot-system/wol-auth/src/main/java/com/agileboot/auth/pojo/form/SmsLoginBody.java b/wol-auth/src/main/java/com/agileboot/auth/pojo/form/SmsLoginBody.java similarity index 100% rename from agileboot-system/wol-auth/src/main/java/com/agileboot/auth/pojo/form/SmsLoginBody.java rename to wol-auth/src/main/java/com/agileboot/auth/pojo/form/SmsLoginBody.java diff --git a/agileboot-system/wol-auth/src/main/java/com/agileboot/auth/pojo/form/SocialLoginBody.java b/wol-auth/src/main/java/com/agileboot/auth/pojo/form/SocialLoginBody.java similarity index 100% rename from agileboot-system/wol-auth/src/main/java/com/agileboot/auth/pojo/form/SocialLoginBody.java rename to wol-auth/src/main/java/com/agileboot/auth/pojo/form/SocialLoginBody.java diff --git a/agileboot-system/wol-auth/src/main/java/com/agileboot/auth/pojo/vo/CaptchaVO.java b/wol-auth/src/main/java/com/agileboot/auth/pojo/vo/CaptchaVO.java similarity index 100% rename from agileboot-system/wol-auth/src/main/java/com/agileboot/auth/pojo/vo/CaptchaVO.java rename to wol-auth/src/main/java/com/agileboot/auth/pojo/vo/CaptchaVO.java diff --git a/agileboot-system/wol-auth/src/main/java/com/agileboot/auth/pojo/vo/ConfigVO.java b/wol-auth/src/main/java/com/agileboot/auth/pojo/vo/ConfigVO.java similarity index 100% rename from agileboot-system/wol-auth/src/main/java/com/agileboot/auth/pojo/vo/ConfigVO.java rename to wol-auth/src/main/java/com/agileboot/auth/pojo/vo/ConfigVO.java diff --git a/agileboot-system/wol-auth/src/main/java/com/agileboot/auth/pojo/vo/CurrentLoginUserVO.java b/wol-auth/src/main/java/com/agileboot/auth/pojo/vo/CurrentLoginUserVO.java similarity index 100% rename from agileboot-system/wol-auth/src/main/java/com/agileboot/auth/pojo/vo/CurrentLoginUserVO.java rename to wol-auth/src/main/java/com/agileboot/auth/pojo/vo/CurrentLoginUserVO.java diff --git a/agileboot-system/wol-auth/src/main/java/com/agileboot/auth/pojo/vo/LoginVO.java b/wol-auth/src/main/java/com/agileboot/auth/pojo/vo/LoginVO.java similarity index 100% rename from agileboot-system/wol-auth/src/main/java/com/agileboot/auth/pojo/vo/LoginVO.java rename to wol-auth/src/main/java/com/agileboot/auth/pojo/vo/LoginVO.java diff --git a/agileboot-system/wol-auth/src/main/java/com/agileboot/auth/properties/CaptchaProperties.java b/wol-auth/src/main/java/com/agileboot/auth/properties/CaptchaProperties.java similarity index 100% rename from agileboot-system/wol-auth/src/main/java/com/agileboot/auth/properties/CaptchaProperties.java rename to wol-auth/src/main/java/com/agileboot/auth/properties/CaptchaProperties.java diff --git a/agileboot-system/wol-auth/src/main/java/com/agileboot/auth/properties/UserPasswordProperties.java b/wol-auth/src/main/java/com/agileboot/auth/properties/UserPasswordProperties.java similarity index 100% rename from agileboot-system/wol-auth/src/main/java/com/agileboot/auth/properties/UserPasswordProperties.java rename to wol-auth/src/main/java/com/agileboot/auth/properties/UserPasswordProperties.java diff --git a/agileboot-system/wol-auth/src/main/java/com/agileboot/auth/service/IAuthStrategy.java b/wol-auth/src/main/java/com/agileboot/auth/service/IAuthStrategy.java similarity index 100% rename from agileboot-system/wol-auth/src/main/java/com/agileboot/auth/service/IAuthStrategy.java rename to wol-auth/src/main/java/com/agileboot/auth/service/IAuthStrategy.java diff --git a/agileboot-system/wol-auth/src/main/java/com/agileboot/auth/service/SysLoginService.java b/wol-auth/src/main/java/com/agileboot/auth/service/SysLoginService.java similarity index 100% rename from agileboot-system/wol-auth/src/main/java/com/agileboot/auth/service/SysLoginService.java rename to wol-auth/src/main/java/com/agileboot/auth/service/SysLoginService.java diff --git a/agileboot-system/wol-auth/src/main/java/com/agileboot/auth/service/strategy/PasswordAuthStrategy.java b/wol-auth/src/main/java/com/agileboot/auth/service/strategy/PasswordAuthStrategy.java similarity index 100% rename from agileboot-system/wol-auth/src/main/java/com/agileboot/auth/service/strategy/PasswordAuthStrategy.java rename to wol-auth/src/main/java/com/agileboot/auth/service/strategy/PasswordAuthStrategy.java diff --git a/agileboot-system/wol-auth/src/main/resources/application-dev.yml b/wol-auth/src/main/resources/application-dev.yml similarity index 100% rename from agileboot-system/wol-auth/src/main/resources/application-dev.yml rename to wol-auth/src/main/resources/application-dev.yml diff --git a/agileboot-system/wol-auth/src/main/resources/application.yml b/wol-auth/src/main/resources/application.yml similarity index 100% rename from agileboot-system/wol-auth/src/main/resources/application.yml rename to wol-auth/src/main/resources/application.yml diff --git a/agileboot-system/wol-auth/src/main/resources/auth.yml b/wol-auth/src/main/resources/auth.yml similarity index 100% rename from agileboot-system/wol-auth/src/main/resources/auth.yml rename to wol-auth/src/main/resources/auth.yml diff --git a/agileboot-system/wol-gateway/pom.xml b/wol-gateway/pom.xml similarity index 97% rename from agileboot-system/wol-gateway/pom.xml rename to wol-gateway/pom.xml index 439c8e7..0808c8a 100644 --- a/agileboot-system/wol-gateway/pom.xml +++ b/wol-gateway/pom.xml @@ -5,7 +5,7 @@ 4.0.0 com.agileboot - agileboot-system + agileboot 1.0.0 diff --git a/agileboot-system/wol-gateway/src/main/java/com/agileboot/gateway/WolGatewayApplication.java b/wol-gateway/src/main/java/com/agileboot/gateway/WolGatewayApplication.java similarity index 100% rename from agileboot-system/wol-gateway/src/main/java/com/agileboot/gateway/WolGatewayApplication.java rename to wol-gateway/src/main/java/com/agileboot/gateway/WolGatewayApplication.java diff --git a/agileboot-system/wol-gateway/src/main/java/com/agileboot/gateway/config/SaTokenConfig.java b/wol-gateway/src/main/java/com/agileboot/gateway/config/SaTokenConfig.java similarity index 100% rename from agileboot-system/wol-gateway/src/main/java/com/agileboot/gateway/config/SaTokenConfig.java rename to wol-gateway/src/main/java/com/agileboot/gateway/config/SaTokenConfig.java diff --git a/agileboot-system/wol-gateway/src/main/java/com/agileboot/gateway/filter/ForwardAuthFilter.java b/wol-gateway/src/main/java/com/agileboot/gateway/filter/ForwardAuthFilter.java similarity index 100% rename from agileboot-system/wol-gateway/src/main/java/com/agileboot/gateway/filter/ForwardAuthFilter.java rename to wol-gateway/src/main/java/com/agileboot/gateway/filter/ForwardAuthFilter.java diff --git a/agileboot-system/wol-gateway/src/main/resources/Dockerfile b/wol-gateway/src/main/resources/Dockerfile similarity index 100% rename from agileboot-system/wol-gateway/src/main/resources/Dockerfile rename to wol-gateway/src/main/resources/Dockerfile diff --git a/agileboot-system/wol-gateway/src/main/resources/application.yml b/wol-gateway/src/main/resources/application.yml similarity index 100% rename from agileboot-system/wol-gateway/src/main/resources/application.yml rename to wol-gateway/src/main/resources/application.yml diff --git a/agileboot-system/wol-gateway/src/main/resources/bootstrap.yml b/wol-gateway/src/main/resources/bootstrap.yml similarity index 100% rename from agileboot-system/wol-gateway/src/main/resources/bootstrap.yml rename to wol-gateway/src/main/resources/bootstrap.yml diff --git a/agileboot-system/agileboot-system-base/pom.xml b/wol-modules/agileboot-system-base/pom.xml similarity index 100% rename from agileboot-system/agileboot-system-base/pom.xml rename to wol-modules/agileboot-system-base/pom.xml diff --git a/agileboot-system/agileboot-system-base/src/main/java/com/agileboot/system/client/mapper/SysClientMapper.java b/wol-modules/agileboot-system-base/src/main/java/com/agileboot/system/client/mapper/SysClientMapper.java similarity index 100% rename from agileboot-system/agileboot-system-base/src/main/java/com/agileboot/system/client/mapper/SysClientMapper.java rename to wol-modules/agileboot-system-base/src/main/java/com/agileboot/system/client/mapper/SysClientMapper.java diff --git a/agileboot-system/agileboot-system-base/src/main/java/com/agileboot/system/client/mapper/xml/SysClientMapper.xml b/wol-modules/agileboot-system-base/src/main/java/com/agileboot/system/client/mapper/xml/SysClientMapper.xml similarity index 100% rename from agileboot-system/agileboot-system-base/src/main/java/com/agileboot/system/client/mapper/xml/SysClientMapper.xml rename to wol-modules/agileboot-system-base/src/main/java/com/agileboot/system/client/mapper/xml/SysClientMapper.xml diff --git a/agileboot-system/agileboot-system-base/src/main/java/com/agileboot/system/client/service/ISysClientService.java b/wol-modules/agileboot-system-base/src/main/java/com/agileboot/system/client/service/ISysClientService.java similarity index 100% rename from agileboot-system/agileboot-system-base/src/main/java/com/agileboot/system/client/service/ISysClientService.java rename to wol-modules/agileboot-system-base/src/main/java/com/agileboot/system/client/service/ISysClientService.java diff --git a/agileboot-system/agileboot-system-base/src/main/java/com/agileboot/system/client/service/impl/SysClientServiceImpl.java b/wol-modules/agileboot-system-base/src/main/java/com/agileboot/system/client/service/impl/SysClientServiceImpl.java similarity index 100% rename from agileboot-system/agileboot-system-base/src/main/java/com/agileboot/system/client/service/impl/SysClientServiceImpl.java rename to wol-modules/agileboot-system-base/src/main/java/com/agileboot/system/client/service/impl/SysClientServiceImpl.java diff --git a/agileboot-system/agileboot-system-base/src/main/java/com/agileboot/system/config/controller/SysConfigController.java b/wol-modules/agileboot-system-base/src/main/java/com/agileboot/system/config/controller/SysConfigController.java similarity index 100% rename from agileboot-system/agileboot-system-base/src/main/java/com/agileboot/system/config/controller/SysConfigController.java rename to wol-modules/agileboot-system-base/src/main/java/com/agileboot/system/config/controller/SysConfigController.java diff --git a/agileboot-system/agileboot-system-base/src/main/java/com/agileboot/system/config/mapper/SysConfigMapper.java b/wol-modules/agileboot-system-base/src/main/java/com/agileboot/system/config/mapper/SysConfigMapper.java similarity index 100% rename from agileboot-system/agileboot-system-base/src/main/java/com/agileboot/system/config/mapper/SysConfigMapper.java rename to wol-modules/agileboot-system-base/src/main/java/com/agileboot/system/config/mapper/SysConfigMapper.java diff --git a/agileboot-system/agileboot-system-base/src/main/java/com/agileboot/system/config/mapper/xml/SysConfigMapper.xml b/wol-modules/agileboot-system-base/src/main/java/com/agileboot/system/config/mapper/xml/SysConfigMapper.xml similarity index 100% rename from agileboot-system/agileboot-system-base/src/main/java/com/agileboot/system/config/mapper/xml/SysConfigMapper.xml rename to wol-modules/agileboot-system-base/src/main/java/com/agileboot/system/config/mapper/xml/SysConfigMapper.xml diff --git a/agileboot-system/agileboot-system-base/src/main/java/com/agileboot/system/config/service/ISysConfigService.java b/wol-modules/agileboot-system-base/src/main/java/com/agileboot/system/config/service/ISysConfigService.java similarity index 100% rename from agileboot-system/agileboot-system-base/src/main/java/com/agileboot/system/config/service/ISysConfigService.java rename to wol-modules/agileboot-system-base/src/main/java/com/agileboot/system/config/service/ISysConfigService.java diff --git a/agileboot-system/agileboot-system-base/src/main/java/com/agileboot/system/config/service/impl/SysConfigServiceImpl.java b/wol-modules/agileboot-system-base/src/main/java/com/agileboot/system/config/service/impl/SysConfigServiceImpl.java similarity index 100% rename from agileboot-system/agileboot-system-base/src/main/java/com/agileboot/system/config/service/impl/SysConfigServiceImpl.java rename to wol-modules/agileboot-system-base/src/main/java/com/agileboot/system/config/service/impl/SysConfigServiceImpl.java diff --git a/agileboot-system/agileboot-system-base/src/main/java/com/agileboot/system/dept/controller/SysDeptController.java b/wol-modules/agileboot-system-base/src/main/java/com/agileboot/system/dept/controller/SysDeptController.java similarity index 100% rename from agileboot-system/agileboot-system-base/src/main/java/com/agileboot/system/dept/controller/SysDeptController.java rename to wol-modules/agileboot-system-base/src/main/java/com/agileboot/system/dept/controller/SysDeptController.java diff --git a/agileboot-system/agileboot-system-base/src/main/java/com/agileboot/system/dept/mapper/SysDeptMapper.java b/wol-modules/agileboot-system-base/src/main/java/com/agileboot/system/dept/mapper/SysDeptMapper.java similarity index 100% rename from agileboot-system/agileboot-system-base/src/main/java/com/agileboot/system/dept/mapper/SysDeptMapper.java rename to wol-modules/agileboot-system-base/src/main/java/com/agileboot/system/dept/mapper/SysDeptMapper.java diff --git a/agileboot-system/agileboot-system-base/src/main/java/com/agileboot/system/dept/mapper/xml/SysDeptMapper.xml b/wol-modules/agileboot-system-base/src/main/java/com/agileboot/system/dept/mapper/xml/SysDeptMapper.xml similarity index 100% rename from agileboot-system/agileboot-system-base/src/main/java/com/agileboot/system/dept/mapper/xml/SysDeptMapper.xml rename to wol-modules/agileboot-system-base/src/main/java/com/agileboot/system/dept/mapper/xml/SysDeptMapper.xml diff --git a/agileboot-system/agileboot-system-base/src/main/java/com/agileboot/system/dept/service/ISysDeptService.java b/wol-modules/agileboot-system-base/src/main/java/com/agileboot/system/dept/service/ISysDeptService.java similarity index 100% rename from agileboot-system/agileboot-system-base/src/main/java/com/agileboot/system/dept/service/ISysDeptService.java rename to wol-modules/agileboot-system-base/src/main/java/com/agileboot/system/dept/service/ISysDeptService.java diff --git a/agileboot-system/agileboot-system-base/src/main/java/com/agileboot/system/dept/service/impl/SysDeptServiceImpl.java b/wol-modules/agileboot-system-base/src/main/java/com/agileboot/system/dept/service/impl/SysDeptServiceImpl.java similarity index 100% rename from agileboot-system/agileboot-system-base/src/main/java/com/agileboot/system/dept/service/impl/SysDeptServiceImpl.java rename to wol-modules/agileboot-system-base/src/main/java/com/agileboot/system/dept/service/impl/SysDeptServiceImpl.java diff --git a/agileboot-system/agileboot-system-base/src/main/java/com/agileboot/system/log/controller/SysLogsController.java b/wol-modules/agileboot-system-base/src/main/java/com/agileboot/system/log/controller/SysLogsController.java similarity index 100% rename from agileboot-system/agileboot-system-base/src/main/java/com/agileboot/system/log/controller/SysLogsController.java rename to wol-modules/agileboot-system-base/src/main/java/com/agileboot/system/log/controller/SysLogsController.java diff --git a/agileboot-system/agileboot-system-base/src/main/java/com/agileboot/system/log/mapper/SysLoginInfoMapper.java b/wol-modules/agileboot-system-base/src/main/java/com/agileboot/system/log/mapper/SysLoginInfoMapper.java similarity index 100% rename from agileboot-system/agileboot-system-base/src/main/java/com/agileboot/system/log/mapper/SysLoginInfoMapper.java rename to wol-modules/agileboot-system-base/src/main/java/com/agileboot/system/log/mapper/SysLoginInfoMapper.java diff --git a/agileboot-system/agileboot-system-base/src/main/java/com/agileboot/system/log/mapper/SysOperationLogMapper.java b/wol-modules/agileboot-system-base/src/main/java/com/agileboot/system/log/mapper/SysOperationLogMapper.java similarity index 100% rename from agileboot-system/agileboot-system-base/src/main/java/com/agileboot/system/log/mapper/SysOperationLogMapper.java rename to wol-modules/agileboot-system-base/src/main/java/com/agileboot/system/log/mapper/SysOperationLogMapper.java diff --git a/agileboot-system/agileboot-system-base/src/main/java/com/agileboot/system/log/mapper/xml/SysLoginInfoMapper.xml b/wol-modules/agileboot-system-base/src/main/java/com/agileboot/system/log/mapper/xml/SysLoginInfoMapper.xml similarity index 100% rename from agileboot-system/agileboot-system-base/src/main/java/com/agileboot/system/log/mapper/xml/SysLoginInfoMapper.xml rename to wol-modules/agileboot-system-base/src/main/java/com/agileboot/system/log/mapper/xml/SysLoginInfoMapper.xml diff --git a/agileboot-system/agileboot-system-base/src/main/java/com/agileboot/system/log/mapper/xml/SysOperationLogMapper.xml b/wol-modules/agileboot-system-base/src/main/java/com/agileboot/system/log/mapper/xml/SysOperationLogMapper.xml similarity index 100% rename from agileboot-system/agileboot-system-base/src/main/java/com/agileboot/system/log/mapper/xml/SysOperationLogMapper.xml rename to wol-modules/agileboot-system-base/src/main/java/com/agileboot/system/log/mapper/xml/SysOperationLogMapper.xml diff --git a/agileboot-system/agileboot-system-base/src/main/java/com/agileboot/system/log/service/ILogService.java b/wol-modules/agileboot-system-base/src/main/java/com/agileboot/system/log/service/ILogService.java similarity index 100% rename from agileboot-system/agileboot-system-base/src/main/java/com/agileboot/system/log/service/ILogService.java rename to wol-modules/agileboot-system-base/src/main/java/com/agileboot/system/log/service/ILogService.java diff --git a/agileboot-system/agileboot-system-base/src/main/java/com/agileboot/system/log/service/impl/LogServiceImpl.java b/wol-modules/agileboot-system-base/src/main/java/com/agileboot/system/log/service/impl/LogServiceImpl.java similarity index 100% rename from agileboot-system/agileboot-system-base/src/main/java/com/agileboot/system/log/service/impl/LogServiceImpl.java rename to wol-modules/agileboot-system-base/src/main/java/com/agileboot/system/log/service/impl/LogServiceImpl.java diff --git a/agileboot-system/agileboot-system-base/src/main/java/com/agileboot/system/menu/controller/SysMenuController.java b/wol-modules/agileboot-system-base/src/main/java/com/agileboot/system/menu/controller/SysMenuController.java similarity index 100% rename from agileboot-system/agileboot-system-base/src/main/java/com/agileboot/system/menu/controller/SysMenuController.java rename to wol-modules/agileboot-system-base/src/main/java/com/agileboot/system/menu/controller/SysMenuController.java diff --git a/agileboot-system/agileboot-system-base/src/main/java/com/agileboot/system/menu/mapper/SysMenuMapper.java b/wol-modules/agileboot-system-base/src/main/java/com/agileboot/system/menu/mapper/SysMenuMapper.java similarity index 100% rename from agileboot-system/agileboot-system-base/src/main/java/com/agileboot/system/menu/mapper/SysMenuMapper.java rename to wol-modules/agileboot-system-base/src/main/java/com/agileboot/system/menu/mapper/SysMenuMapper.java diff --git a/agileboot-system/agileboot-system-base/src/main/java/com/agileboot/system/menu/mapper/xml/SysMenuMapper.xml b/wol-modules/agileboot-system-base/src/main/java/com/agileboot/system/menu/mapper/xml/SysMenuMapper.xml similarity index 100% rename from agileboot-system/agileboot-system-base/src/main/java/com/agileboot/system/menu/mapper/xml/SysMenuMapper.xml rename to wol-modules/agileboot-system-base/src/main/java/com/agileboot/system/menu/mapper/xml/SysMenuMapper.xml diff --git a/agileboot-system/agileboot-system-base/src/main/java/com/agileboot/system/menu/service/ISysMenuService.java b/wol-modules/agileboot-system-base/src/main/java/com/agileboot/system/menu/service/ISysMenuService.java similarity index 100% rename from agileboot-system/agileboot-system-base/src/main/java/com/agileboot/system/menu/service/ISysMenuService.java rename to wol-modules/agileboot-system-base/src/main/java/com/agileboot/system/menu/service/ISysMenuService.java diff --git a/agileboot-system/agileboot-system-base/src/main/java/com/agileboot/system/menu/service/impl/SysMenuServiceImpl.java b/wol-modules/agileboot-system-base/src/main/java/com/agileboot/system/menu/service/impl/SysMenuServiceImpl.java similarity index 100% rename from agileboot-system/agileboot-system-base/src/main/java/com/agileboot/system/menu/service/impl/SysMenuServiceImpl.java rename to wol-modules/agileboot-system-base/src/main/java/com/agileboot/system/menu/service/impl/SysMenuServiceImpl.java diff --git a/agileboot-system/agileboot-system-base/src/main/java/com/agileboot/system/monitor/controller/MonitorController.java b/wol-modules/agileboot-system-base/src/main/java/com/agileboot/system/monitor/controller/MonitorController.java similarity index 100% rename from agileboot-system/agileboot-system-base/src/main/java/com/agileboot/system/monitor/controller/MonitorController.java rename to wol-modules/agileboot-system-base/src/main/java/com/agileboot/system/monitor/controller/MonitorController.java diff --git a/agileboot-system/agileboot-system-base/src/main/java/com/agileboot/system/monitor/service/ISysMonitorService.java b/wol-modules/agileboot-system-base/src/main/java/com/agileboot/system/monitor/service/ISysMonitorService.java similarity index 100% rename from agileboot-system/agileboot-system-base/src/main/java/com/agileboot/system/monitor/service/ISysMonitorService.java rename to wol-modules/agileboot-system-base/src/main/java/com/agileboot/system/monitor/service/ISysMonitorService.java diff --git a/agileboot-system/agileboot-system-base/src/main/java/com/agileboot/system/monitor/service/impl/SysMonitorServiceImpl.java b/wol-modules/agileboot-system-base/src/main/java/com/agileboot/system/monitor/service/impl/SysMonitorServiceImpl.java similarity index 100% rename from agileboot-system/agileboot-system-base/src/main/java/com/agileboot/system/monitor/service/impl/SysMonitorServiceImpl.java rename to wol-modules/agileboot-system-base/src/main/java/com/agileboot/system/monitor/service/impl/SysMonitorServiceImpl.java diff --git a/agileboot-system/agileboot-system-base/src/main/java/com/agileboot/system/notice/controller/SysNoticeController.java b/wol-modules/agileboot-system-base/src/main/java/com/agileboot/system/notice/controller/SysNoticeController.java similarity index 100% rename from agileboot-system/agileboot-system-base/src/main/java/com/agileboot/system/notice/controller/SysNoticeController.java rename to wol-modules/agileboot-system-base/src/main/java/com/agileboot/system/notice/controller/SysNoticeController.java diff --git a/agileboot-system/agileboot-system-base/src/main/java/com/agileboot/system/notice/mapper/SysNoticeMapper.java b/wol-modules/agileboot-system-base/src/main/java/com/agileboot/system/notice/mapper/SysNoticeMapper.java similarity index 100% rename from agileboot-system/agileboot-system-base/src/main/java/com/agileboot/system/notice/mapper/SysNoticeMapper.java rename to wol-modules/agileboot-system-base/src/main/java/com/agileboot/system/notice/mapper/SysNoticeMapper.java diff --git a/agileboot-system/agileboot-system-base/src/main/java/com/agileboot/system/notice/mapper/xml/SysNoticeMapper.xml b/wol-modules/agileboot-system-base/src/main/java/com/agileboot/system/notice/mapper/xml/SysNoticeMapper.xml similarity index 100% rename from agileboot-system/agileboot-system-base/src/main/java/com/agileboot/system/notice/mapper/xml/SysNoticeMapper.xml rename to wol-modules/agileboot-system-base/src/main/java/com/agileboot/system/notice/mapper/xml/SysNoticeMapper.xml diff --git a/agileboot-system/agileboot-system-base/src/main/java/com/agileboot/system/notice/service/ISysNoticeService.java b/wol-modules/agileboot-system-base/src/main/java/com/agileboot/system/notice/service/ISysNoticeService.java similarity index 100% rename from agileboot-system/agileboot-system-base/src/main/java/com/agileboot/system/notice/service/ISysNoticeService.java rename to wol-modules/agileboot-system-base/src/main/java/com/agileboot/system/notice/service/ISysNoticeService.java diff --git a/agileboot-system/agileboot-system-base/src/main/java/com/agileboot/system/notice/service/impl/SysNoticeServiceImpl.java b/wol-modules/agileboot-system-base/src/main/java/com/agileboot/system/notice/service/impl/SysNoticeServiceImpl.java similarity index 100% rename from agileboot-system/agileboot-system-base/src/main/java/com/agileboot/system/notice/service/impl/SysNoticeServiceImpl.java rename to wol-modules/agileboot-system-base/src/main/java/com/agileboot/system/notice/service/impl/SysNoticeServiceImpl.java diff --git a/agileboot-system/agileboot-system-base/src/main/java/com/agileboot/system/post/controller/SysPostController.java b/wol-modules/agileboot-system-base/src/main/java/com/agileboot/system/post/controller/SysPostController.java similarity index 100% rename from agileboot-system/agileboot-system-base/src/main/java/com/agileboot/system/post/controller/SysPostController.java rename to wol-modules/agileboot-system-base/src/main/java/com/agileboot/system/post/controller/SysPostController.java diff --git a/agileboot-system/agileboot-system-base/src/main/java/com/agileboot/system/post/mapper/SysPostMapper.java b/wol-modules/agileboot-system-base/src/main/java/com/agileboot/system/post/mapper/SysPostMapper.java similarity index 100% rename from agileboot-system/agileboot-system-base/src/main/java/com/agileboot/system/post/mapper/SysPostMapper.java rename to wol-modules/agileboot-system-base/src/main/java/com/agileboot/system/post/mapper/SysPostMapper.java diff --git a/agileboot-system/agileboot-system-base/src/main/java/com/agileboot/system/post/mapper/xml/SysPostMapper.xml b/wol-modules/agileboot-system-base/src/main/java/com/agileboot/system/post/mapper/xml/SysPostMapper.xml similarity index 100% rename from agileboot-system/agileboot-system-base/src/main/java/com/agileboot/system/post/mapper/xml/SysPostMapper.xml rename to wol-modules/agileboot-system-base/src/main/java/com/agileboot/system/post/mapper/xml/SysPostMapper.xml diff --git a/agileboot-system/agileboot-system-base/src/main/java/com/agileboot/system/post/service/ISysPostService.java b/wol-modules/agileboot-system-base/src/main/java/com/agileboot/system/post/service/ISysPostService.java similarity index 100% rename from agileboot-system/agileboot-system-base/src/main/java/com/agileboot/system/post/service/ISysPostService.java rename to wol-modules/agileboot-system-base/src/main/java/com/agileboot/system/post/service/ISysPostService.java diff --git a/agileboot-system/agileboot-system-base/src/main/java/com/agileboot/system/post/service/impl/SysPostServiceImpl.java b/wol-modules/agileboot-system-base/src/main/java/com/agileboot/system/post/service/impl/SysPostServiceImpl.java similarity index 100% rename from agileboot-system/agileboot-system-base/src/main/java/com/agileboot/system/post/service/impl/SysPostServiceImpl.java rename to wol-modules/agileboot-system-base/src/main/java/com/agileboot/system/post/service/impl/SysPostServiceImpl.java diff --git a/agileboot-system/agileboot-system-base/src/main/java/com/agileboot/system/role/controller/SysRoleController.java b/wol-modules/agileboot-system-base/src/main/java/com/agileboot/system/role/controller/SysRoleController.java similarity index 100% rename from agileboot-system/agileboot-system-base/src/main/java/com/agileboot/system/role/controller/SysRoleController.java rename to wol-modules/agileboot-system-base/src/main/java/com/agileboot/system/role/controller/SysRoleController.java diff --git a/agileboot-system/agileboot-system-base/src/main/java/com/agileboot/system/role/mapper/SysRoleMapper.java b/wol-modules/agileboot-system-base/src/main/java/com/agileboot/system/role/mapper/SysRoleMapper.java similarity index 100% rename from agileboot-system/agileboot-system-base/src/main/java/com/agileboot/system/role/mapper/SysRoleMapper.java rename to wol-modules/agileboot-system-base/src/main/java/com/agileboot/system/role/mapper/SysRoleMapper.java diff --git a/agileboot-system/agileboot-system-base/src/main/java/com/agileboot/system/role/mapper/SysRoleMenuMapper.java b/wol-modules/agileboot-system-base/src/main/java/com/agileboot/system/role/mapper/SysRoleMenuMapper.java similarity index 100% rename from agileboot-system/agileboot-system-base/src/main/java/com/agileboot/system/role/mapper/SysRoleMenuMapper.java rename to wol-modules/agileboot-system-base/src/main/java/com/agileboot/system/role/mapper/SysRoleMenuMapper.java diff --git a/agileboot-system/agileboot-system-base/src/main/java/com/agileboot/system/role/mapper/xml/SysRoleMapper.xml b/wol-modules/agileboot-system-base/src/main/java/com/agileboot/system/role/mapper/xml/SysRoleMapper.xml similarity index 100% rename from agileboot-system/agileboot-system-base/src/main/java/com/agileboot/system/role/mapper/xml/SysRoleMapper.xml rename to wol-modules/agileboot-system-base/src/main/java/com/agileboot/system/role/mapper/xml/SysRoleMapper.xml diff --git a/agileboot-system/agileboot-system-base/src/main/java/com/agileboot/system/role/mapper/xml/SysRoleMenuMapper.xml b/wol-modules/agileboot-system-base/src/main/java/com/agileboot/system/role/mapper/xml/SysRoleMenuMapper.xml similarity index 100% rename from agileboot-system/agileboot-system-base/src/main/java/com/agileboot/system/role/mapper/xml/SysRoleMenuMapper.xml rename to wol-modules/agileboot-system-base/src/main/java/com/agileboot/system/role/mapper/xml/SysRoleMenuMapper.xml diff --git a/agileboot-system/agileboot-system-base/src/main/java/com/agileboot/system/role/service/ISysRoleMenuService.java b/wol-modules/agileboot-system-base/src/main/java/com/agileboot/system/role/service/ISysRoleMenuService.java similarity index 100% rename from agileboot-system/agileboot-system-base/src/main/java/com/agileboot/system/role/service/ISysRoleMenuService.java rename to wol-modules/agileboot-system-base/src/main/java/com/agileboot/system/role/service/ISysRoleMenuService.java diff --git a/agileboot-system/agileboot-system-base/src/main/java/com/agileboot/system/role/service/ISysRoleService.java b/wol-modules/agileboot-system-base/src/main/java/com/agileboot/system/role/service/ISysRoleService.java similarity index 100% rename from agileboot-system/agileboot-system-base/src/main/java/com/agileboot/system/role/service/ISysRoleService.java rename to wol-modules/agileboot-system-base/src/main/java/com/agileboot/system/role/service/ISysRoleService.java diff --git a/agileboot-system/agileboot-system-base/src/main/java/com/agileboot/system/role/service/impl/SysRoleMenuServiceImpl.java b/wol-modules/agileboot-system-base/src/main/java/com/agileboot/system/role/service/impl/SysRoleMenuServiceImpl.java similarity index 100% rename from agileboot-system/agileboot-system-base/src/main/java/com/agileboot/system/role/service/impl/SysRoleMenuServiceImpl.java rename to wol-modules/agileboot-system-base/src/main/java/com/agileboot/system/role/service/impl/SysRoleMenuServiceImpl.java diff --git a/agileboot-system/agileboot-system-base/src/main/java/com/agileboot/system/role/service/impl/SysRoleServiceImpl.java b/wol-modules/agileboot-system-base/src/main/java/com/agileboot/system/role/service/impl/SysRoleServiceImpl.java similarity index 100% rename from agileboot-system/agileboot-system-base/src/main/java/com/agileboot/system/role/service/impl/SysRoleServiceImpl.java rename to wol-modules/agileboot-system-base/src/main/java/com/agileboot/system/role/service/impl/SysRoleServiceImpl.java diff --git a/agileboot-system/agileboot-system-base/src/main/java/com/agileboot/system/user/controller/SysUserController.java b/wol-modules/agileboot-system-base/src/main/java/com/agileboot/system/user/controller/SysUserController.java similarity index 100% rename from agileboot-system/agileboot-system-base/src/main/java/com/agileboot/system/user/controller/SysUserController.java rename to wol-modules/agileboot-system-base/src/main/java/com/agileboot/system/user/controller/SysUserController.java diff --git a/agileboot-system/agileboot-system-base/src/main/java/com/agileboot/system/user/mapper/SysUserMapper.java b/wol-modules/agileboot-system-base/src/main/java/com/agileboot/system/user/mapper/SysUserMapper.java similarity index 100% rename from agileboot-system/agileboot-system-base/src/main/java/com/agileboot/system/user/mapper/SysUserMapper.java rename to wol-modules/agileboot-system-base/src/main/java/com/agileboot/system/user/mapper/SysUserMapper.java diff --git a/agileboot-system/agileboot-system-base/src/main/java/com/agileboot/system/user/mapper/xml/SysUserMapper.xml b/wol-modules/agileboot-system-base/src/main/java/com/agileboot/system/user/mapper/xml/SysUserMapper.xml similarity index 100% rename from agileboot-system/agileboot-system-base/src/main/java/com/agileboot/system/user/mapper/xml/SysUserMapper.xml rename to wol-modules/agileboot-system-base/src/main/java/com/agileboot/system/user/mapper/xml/SysUserMapper.xml diff --git a/agileboot-system/agileboot-system-base/src/main/java/com/agileboot/system/user/service/ISysUserService.java b/wol-modules/agileboot-system-base/src/main/java/com/agileboot/system/user/service/ISysUserService.java similarity index 100% rename from agileboot-system/agileboot-system-base/src/main/java/com/agileboot/system/user/service/ISysUserService.java rename to wol-modules/agileboot-system-base/src/main/java/com/agileboot/system/user/service/ISysUserService.java diff --git a/agileboot-system/agileboot-system-base/src/main/java/com/agileboot/system/user/service/impl/SysUserServiceImpl.java b/wol-modules/agileboot-system-base/src/main/java/com/agileboot/system/user/service/impl/SysUserServiceImpl.java similarity index 100% rename from agileboot-system/agileboot-system-base/src/main/java/com/agileboot/system/user/service/impl/SysUserServiceImpl.java rename to wol-modules/agileboot-system-base/src/main/java/com/agileboot/system/user/service/impl/SysUserServiceImpl.java diff --git a/wol-modules/pom.xml b/wol-modules/pom.xml index 37b2e81..f635daa 100644 --- a/wol-modules/pom.xml +++ b/wol-modules/pom.xml @@ -10,6 +10,7 @@ pom + agileboot-system-base wol-module-codegen wol-module-ai diff --git a/wol-modules/wol-module-codegen/pom.xml b/wol-modules/wol-module-codegen/pom.xml index 8fbeeed..cccd52f 100644 --- a/wol-modules/wol-module-codegen/pom.xml +++ b/wol-modules/wol-module-codegen/pom.xml @@ -8,12 +8,11 @@ wol-module-codegen - wol-module-codegen - http://maven.apache.org + wol-module-codegen UTF-8 diff --git a/wol-modules/wol-module-codegen/src/main/resources/application-dev.yml b/wol-modules/wol-module-codegen/src/main/resources/application-dev.yml deleted file mode 100644 index e69de29..0000000 diff --git a/wol-modules/wol-module-codegen/src/main/resources/application.yml b/wol-modules/wol-module-codegen/src/main/resources/application.yml index 2036901..3307b1c 100644 --- a/wol-modules/wol-module-codegen/src/main/resources/application.yml +++ b/wol-modules/wol-module-codegen/src/main/resources/application.yml @@ -2,6 +2,6 @@ server: port: 9211 spring: application: - name: wol-codegen - profiles: - active: dev + name: @application.name@ + config: + import: classpath:base.yml