diff --git a/mms-admin/pom.xml b/mms-admin/pom.xml index cbd8c5b..ce3d132 100644 --- a/mms-admin/pom.xml +++ b/mms-admin/pom.xml @@ -67,6 +67,11 @@ com.sxpcwlkj mms-thymeleaf + + + com.sxpcwlkj + mms-mall-admin + diff --git a/mms-admin/src/main/resources/application.yml b/mms-admin/src/main/resources/application.yml index ddbe8ee..9eab14b 100644 --- a/mms-admin/src/main/resources/application.yml +++ b/mms-admin/src/main/resources/application.yml @@ -97,6 +97,7 @@ spring: cdn: 'https://cdn.jsdelivr.net' # 注入静态资源 CDN 前缀(需在配置文件中定义) web: + is-open: true # 排除路径 excludes: # 放行 @@ -108,6 +109,7 @@ spring: - /.well-known/** + --- # Sa-Token配置 sa-token: # token名称 (同时也是cookie名称) diff --git a/mms-modules/mms-framework/src/main/java/com/sxpcwlkj/framework/controller/FrameworkController.java b/mms-modules/mms-framework/src/main/java/com/sxpcwlkj/framework/controller/FrameworkController.java index 2371b8a..513461d 100644 --- a/mms-modules/mms-framework/src/main/java/com/sxpcwlkj/framework/controller/FrameworkController.java +++ b/mms-modules/mms-framework/src/main/java/com/sxpcwlkj/framework/controller/FrameworkController.java @@ -53,8 +53,8 @@ public class FrameworkController { return "ai/index"; } - @PostConstruct - public void init() { - Console.log("========== Hello" + name + "! V" + version+" =========="); - } +// @PostConstruct +// public void init() { +// Console.log("========== Hello" + name + "! V" + version+" =========="); +// } } diff --git a/mms-modules/mms-framework/src/main/java/com/sxpcwlkj/framework/handler/WebMvcConfigurerHandler.java b/mms-modules/mms-framework/src/main/java/com/sxpcwlkj/framework/handler/WebMvcConfigurerHandler.java index 621eeeb..28ae142 100644 --- a/mms-modules/mms-framework/src/main/java/com/sxpcwlkj/framework/handler/WebMvcConfigurerHandler.java +++ b/mms-modules/mms-framework/src/main/java/com/sxpcwlkj/framework/handler/WebMvcConfigurerHandler.java @@ -25,13 +25,15 @@ public class WebMvcConfigurerHandler implements WebMvcConfigurer { private final WebThymeleafProperties webThymeleafProperties; @Override - public void addInterceptors(InterceptorRegistry registry) { + public void addInterceptors(@org.jetbrains.annotations.NotNull InterceptorRegistry registry) { // 全局访问性能拦截 - registry.addInterceptor(new WebHandlerInterceptorHandler()) - // 拦截所有路径 + if (webThymeleafProperties.getIsOpen()) { + registry.addInterceptor(new WebHandlerInterceptorHandler()) .addPathPatterns("/**") - .excludePathPatterns(webThymeleafProperties.getExcludes()); - ; + .addPathPatterns("/**"); + }else { + registry.addInterceptor(new WebHandlerInterceptorHandler()); + } } @Override diff --git a/mms-patulous/.gitignore b/mms-patulous/.gitignore deleted file mode 100644 index a030e74..0000000 --- a/mms-patulous/.gitignore +++ /dev/null @@ -1,103 +0,0 @@ -# Compiled class file -*.class - -# Log file -*.log - -# BlueJ files -*.ctxt - -# Mobile Tools for Java (J2ME) -.mtj.tmp/ - -# Package Files -*.jar -*.war -*.nar -*.ear -*.zip -*.tar.gz -*.rar - -# Eclipse & IntelliJ IDEA -.classpath -.settings/ -.idea -.idea/ -*.iws -*.iml -*.ipr -.settings -.project -.flattened-pom.xml - -# Maven -target/ -pom.xml.tag -pom.xml.releaseBackup -pom.xml.versionsBackup -pom.xml.next -release.properties -dependency-reduced-pom.xml -buildNumber.properties -.mvn/timing.properties -.mvn/wrapper/maven-wrapper.jar - -# Gradle -.gradle -.gradle/ -build/ -**/build/ -bin/ -!src/**/build/ -gradle-app.setting -!gradle-wrapper.jar -.gradletasknamecache -gradle/wrapper/gradle-wrapper.properties - -# VS Code -.vscode/ - -# STS -.apt_generated -.factorypath -.springBeans -.sts4-cache - -# NetBeans -/nbproject/private/ -/nbbuild/ -/dist/ -/nbdist/ -/.nb-gradle/ -!**/src/main/**/build/ -!**/src/test/**/build/ - -# DB -/script/db/.back_sxpcwlkj/ -/script/db/.version_sxpcwlkj/ -!/script/db/.back_sxpcwlkj/ - -.DS_Store -node_modules -/dist -package-lock.json -yarn.lock - -# local env files -.env.local -.env.*.local - -# Log files -npm-debug.log* -yarn-debug.log* -yarn-error.log* -pnpm-debug.log* - -# Editor directories and files -.vscode -*.suo -*.ntvs* -*.njsproj -*.sln -*.sw? diff --git a/mms-patulous/LICENSE b/mms-patulous/LICENSE deleted file mode 100644 index 5d2597d..0000000 --- a/mms-patulous/LICENSE +++ /dev/null @@ -1,21 +0,0 @@ -MIT License - -Copyright (c) 2025 mmsAdmin - -Permission is hereby granted, free of charge, to any person obtaining a copy -of this software and associated documentation files (the "Software"), to deal -in the Software without restriction, including without limitation the rights -to use, copy, modify, merge, publish, distribute, sublicense, and/or sell -copies of the Software, and to permit persons to whom the Software is -furnished to do so, subject to the following conditions: - -The above copyright notice and this permission notice shall be included in all -copies or substantial portions of the Software. - -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE -AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER -LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, -OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE -SOFTWARE. diff --git a/mms-patulous/mms-monitor/.mvn/wrapper/maven-wrapper.properties b/mms-patulous/mms-monitor/.mvn/wrapper/maven-wrapper.properties deleted file mode 100644 index aeccdfd..0000000 --- a/mms-patulous/mms-monitor/.mvn/wrapper/maven-wrapper.properties +++ /dev/null @@ -1,18 +0,0 @@ -# Licensed to the Apache Software Foundation (ASF) under one -# or more contributor license agreements. See the NOTICE file -# distributed with this work for additional information -# regarding copyright ownership. The ASF licenses this file -# to you under the Apache License, Version 2.0 (the -# "License"); you may not use this file except in compliance -# with the License. You may obtain a copy of the License at -# -# https://www.apache.org/licenses/LICENSE-2.0 -# -# Unless required by applicable law or agreed to in writing, -# software distributed under the License is distributed on an -# "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY -# KIND, either express or implied. See the License for the -# specific language governing permissions and limitations -# under the License. -wrapperVersion=3.3.1 -distributionUrl=https://repo.maven.apache.org/maven2/org/apache/maven/apache-maven/3.9.6/apache-maven-3.9.6-bin.zip diff --git a/mms-patulous/mms-monitor/pom.xml b/mms-patulous/mms-monitor/pom.xml deleted file mode 100644 index 63268ef..0000000 --- a/mms-patulous/mms-monitor/pom.xml +++ /dev/null @@ -1,63 +0,0 @@ - - - 4.0.0 - - com.sxpcwlkj - mms-patulous - ${revision} - - jar - mms-monitor - - - - - org.springframework.boot - spring-boot-starter-web - - - de.codecentric - spring-boot-admin-starter-server - - - - - de.codecentric - spring-boot-admin-starter-client - - - - org.springframework.boot - spring-boot-starter-actuator - - - - org.projectlombok - lombok - - - - - - ${project.artifactId} - - - org.springframework.boot - spring-boot-maven-plugin - ${spring-boot.version} - - - - - - repackage - - - - - - - - diff --git a/mms-patulous/mms-monitor/src/main/java/com/sxpcwlkj/monitor/MmsMonitorApplication.java b/mms-patulous/mms-monitor/src/main/java/com/sxpcwlkj/monitor/MmsMonitorApplication.java deleted file mode 100644 index f4cc4ad..0000000 --- a/mms-patulous/mms-monitor/src/main/java/com/sxpcwlkj/monitor/MmsMonitorApplication.java +++ /dev/null @@ -1,16 +0,0 @@ -package com.sxpcwlkj.monitor; - -import de.codecentric.boot.admin.server.config.EnableAdminServer; -import org.springframework.boot.SpringApplication; -import org.springframework.boot.autoconfigure.SpringBootApplication; - - -@EnableAdminServer -@SpringBootApplication -public class MmsMonitorApplication { - - public static void main(String[] args) { - SpringApplication.run(MmsMonitorApplication.class, args); - } - -} diff --git a/mms-patulous/mms-monitor/src/main/resources/application.yml b/mms-patulous/mms-monitor/src/main/resources/application.yml deleted file mode 100644 index cebe4ee..0000000 --- a/mms-patulous/mms-monitor/src/main/resources/application.yml +++ /dev/null @@ -1,36 +0,0 @@ ---- # SBA 服务端 -server: - # 端口 - port: 9001 ---- # Spring项目名 -spring: - application: - name: MMS Monitor - ---- # Spring Boot Admin -spring: - boot: - admin: - client: - enabled: true #启用/禁用 - instance: - service-host-type: IP - # Spring Boot Admin - url: http://localhost:9001 #监控服务器端地址 - username: admin #账号 - password: 123456 #密码 - ---- # Actuator 监控端点的配置项 -management: - endpoints: - enabled-by-default: true #暴露所有端点信息 - web: - exposure: - include: '*' #以web方式暴露 - endpoint: - health: - show-details: ALWAYS - logfile: - external-file: ./logs/monitor-console.log - - diff --git a/mms-patulous/mms-powerjob/Dockerfile b/mms-patulous/mms-powerjob/Dockerfile deleted file mode 100644 index cbaca66..0000000 --- a/mms-patulous/mms-powerjob/Dockerfile +++ /dev/null @@ -1,27 +0,0 @@ -#FROM findepi/graalvm:java17-native -FROM openjdk:17.0.2-oraclelinux8 - -MAINTAINER SXPCWLKJ - -RUN mkdir -p /sxpcwlkj \ - /sxpcwlkj/mms-powerjob \ - /sxpcwlkj/mms-powerjob/logs \ - /sxpcwlkj/mms-powerjob/files \ - /sxpcwlkj/mms-powerjob/temp \ - /sxpcwlkj/mms-powerjob/skywalking/agent - -WORKDIR /sxpcwlkj/mms-powerjob - -ENV SERVER_PORT=7700 LANG=C.UTF-8 LC_ALL=C.UTF-8 JAVA_OPTS="" - -EXPOSE ${SERVER_PORT} - -ADD ./target/mms-powerjob.jar ./app.jar - -ENTRYPOINT java -Djava.security.egd=file:/dev/./urandom -Dserver.port=${SERVER_PORT} \ - # 应用名称 如果想区分集群节点监控 改成不同的名称即可 - #-Dskywalking.agent.service_name=sxpcwlkj-mms \ - #-javaagent:/sxpcwlkj/mms/skywalking/agent/skywalking-agent.jar \ - -jar app.jar \ - -XX:+HeapDumpOnOutOfMemoryError -Xlog:gc*,:time,tags,level -XX:+UseZGC ${JAVA_OPTS} - diff --git a/mms-patulous/mms-powerjob/pom.xml b/mms-patulous/mms-powerjob/pom.xml deleted file mode 100644 index 7f4311e..0000000 --- a/mms-patulous/mms-powerjob/pom.xml +++ /dev/null @@ -1,91 +0,0 @@ - - - 4.0.0 - - com.sxpcwlkj - mms-patulous - ${revision} - - jar - mms-powerjob - - - 2.7.18 - 2.7.11 - - - - - org.springframework.boot - spring-boot-starter-parent - ${spring-boot.version} - pom - import - - - - - - - - - tech.powerjob - powerjob-server-starter - ${powerjob.version} - - - - - de.codecentric - spring-boot-admin-starter-client - - - - org.springframework.boot - spring-boot-starter-actuator - - - - org.projectlombok - lombok - - - - - - - ${project.artifactId} - - - org.springframework.boot - spring-boot-maven-plugin - ${spring-boot.version} - - - - repackage - - - - - - org.apache.maven.plugins - maven-jar-plugin - ${maven-jar-plugin.version} - - - org.apache.maven.plugins - maven-war-plugin - ${maven-war-plugin.version} - - false - ${project.artifactId} - - - - - - - diff --git a/mms-patulous/mms-powerjob/src/main/java/com/sxpcwlkj/PowerJobServerApplication.java b/mms-patulous/mms-powerjob/src/main/java/com/sxpcwlkj/PowerJobServerApplication.java deleted file mode 100644 index a119562..0000000 --- a/mms-patulous/mms-powerjob/src/main/java/com/sxpcwlkj/PowerJobServerApplication.java +++ /dev/null @@ -1,42 +0,0 @@ -package com.sxpcwlkj; - -import lombok.extern.slf4j.Slf4j; -import org.springframework.boot.SpringApplication; -import org.springframework.boot.autoconfigure.SpringBootApplication; -import org.springframework.context.ConfigurableApplicationContext; -import org.springframework.core.env.Environment; -import org.springframework.scheduling.annotation.EnableScheduling; -import tech.powerjob.server.common.utils.PropertyUtils; - -import java.net.InetAddress; -import java.net.UnknownHostException; - -/** - * @Description TODO - * @Author sxpcwlkj - * @Version v1.0.0 - */ -@Slf4j -@EnableScheduling -@SpringBootApplication(scanBasePackages = "tech.powerjob.server") -public class PowerJobServerApplication { - public static void main(String[] args) throws UnknownHostException { - PropertyUtils.init(); -// SpringApplication.run(tech.powerjob.server.PowerJobServerApplication.class, args); - ConfigurableApplicationContext applicationContext = SpringApplication.run(tech.powerjob.server.PowerJobServerApplication.class, args); - Environment env = applicationContext.getEnvironment(); - System.out.println("PowerJob启动成功,当前环境为: " + env.getProperty("spring.profiles.active")); - log.info("\n----------------------------------------------------------\n\t" + - "Application PowerJob is running! Access URLs:\n\t" + - "Local: \t\thttp://localhost:{}\n\t" + - "External: \thttp://{}:{}\n\t" + - "Doc: \t\t{}\n" + - "----------------------------------------------------------", - - env.getProperty("server.port"), - InetAddress.getLocalHost().getHostAddress(), - env.getProperty("server.port"), - "https://www.yuque.com/powerjob/guidence/problem"); - - } -} \ No newline at end of file diff --git a/mms-patulous/mms-powerjob/src/main/resources/application-dev.properties b/mms-patulous/mms-powerjob/src/main/resources/application-dev.properties deleted file mode 100644 index d8e4f2b..0000000 --- a/mms-patulous/mms-powerjob/src/main/resources/application-dev.properties +++ /dev/null @@ -1,50 +0,0 @@ -oms.env=dev - -####### Database properties(Configure according to the the environment) ####### -spring.datasource.core.driver-class-name=com.mysql.cj.jdbc.Driver -spring.datasource.core.jdbc-url=jdbc:mysql://113.141.95.138:3306/sxpcwlkj_mms?useUnicode=true&characterEncoding=UTF-8&serverTimezone=Asia/Shanghai -spring.datasource.core.username=sxpcwlkj_mms -spring.datasource.core.password=dkfa7WNTbdDJB8ny -spring.datasource.core.maximum-pool-size=20 -spring.datasource.core.minimum-idle=5 - - - -# ===== Spring Boot Admin Server ===== -spring.boot.admin.client.enabled=true -spring.boot.admin.client.instance.service-host-type=IP -spring.boot.admin.client.url=http://localhost:9001 -spring.boot.admin.client.username=admin -spring.boot.admin.client.password=123456 - -####### MongoDB properties(Non-core configuration properties) ####### -####### delete mongodb config to disable mongodb ####### -oms.mongodb.enable=false -#spring.data.mongodb.uri=mongodb+srv://zqq:No1Bug2Please3!@cluster0.wie54.gcp.mongodb.net/powerjob_daily?retryWrites=true&w=majority - -####### Email properties(Non-core configuration properties) ####### -####### Delete the following code to disable the mail ####### -#spring.mail.host=smtp.163.com -#spring.mail.username= -#spring.mail.password= -#spring.mail.properties.mail.smtp.auth=true -#spring.mail.properties.mail.smtp.starttls.enable=true -#spring.mail.properties.mail.smtp.starttls.required=true - -####### DingTalk properties(Non-core configuration properties) ####### -####### Delete the following code to disable the DingTalk ####### -#oms.alarm.ding.app-key=dingauqwkvxxnqskknfv -#oms.alarm.ding.app-secret=XWrEPdAZMPgJeFtHuL0LH73LRj-74umF2_0BFcoXMfvnX0pCQvt0rpb1JOJU_HLl -#oms.alarm.ding.agent-id=847044348 - -####### Resource cleaning properties ####### -oms.instanceinfo.retention=1 -oms.container.retention.local=1 -oms.container.retention.remote=-1 - -####### Cache properties ####### -oms.instance.metadata.cache.size=1024 - -####### Threshold in precise fetching server(0~100). 100 means full detection of server, in which ####### -####### split-brain could be avoided while performance overhead would increase. ####### -oms.accurate.select.server.percentage = 50 diff --git a/mms-patulous/mms-powerjob/src/main/resources/application-local.properties b/mms-patulous/mms-powerjob/src/main/resources/application-local.properties deleted file mode 100644 index 4b76ce0..0000000 --- a/mms-patulous/mms-powerjob/src/main/resources/application-local.properties +++ /dev/null @@ -1,51 +0,0 @@ -oms.env=local - -####### ???????????????????????? ####### -spring.datasource.core.driver-class-name=com.mysql.cj.jdbc.Driver -spring.datasource.core.jdbc-url=jdbc:mysql://localhost:3306/mms?useUnicode=true&characterEncoding=UTF-8&serverTimezone=Asia/Shanghai -spring.datasource.core.username=root -spring.datasource.core.password=123456 -spring.datasource.core.maximum-pool-size=20 -spring.datasource.core.minimum-idle=5 - - -# ===== Spring Boot Admin Server ===== -spring.boot.admin.client.enabled=true -spring.boot.admin.client.instance.service-host-type=IP -spring.boot.admin.client.url=http://localhost:9001 -spring.boot.admin.client.username=admin -spring.boot.admin.client.password=123456 - -####### mongoDB????????????? oms.mongodb.enable=false ??? ####### -####### delete mongodb config to disable mongodb ####### -oms.mongodb.enable=false -spring.data.mongodb.uri=mongodb://localhost:27017/powerjob-daily - -####### Email properties(Non-core configuration properties) ####### -####### Delete the following code to disable the mail ####### - -####### ?????????????????????????? ####### -#spring.mail.host=smtp.163.com -#spring.mail.username= -#spring.mail.password= -#spring.mail.properties.mail.smtp.auth=true -#spring.mail.properties.mail.smtp.starttls.enable=true -#spring.mail.properties.mail.smtp.starttls.required=true - -####### DingTalk properties(Non-core configuration properties) ####### -####### Delete the following code to disable the DingTalk ####### -#oms.alarm.ding.app-key=dingauqwkvxxnqskknfv -#oms.alarm.ding.app-secret=XWrEPdAZMPgJeFtHuL0LH73LRj-74umF2_0BFcoXMfvnX0pCQvt0rpb1JOJU_HLl -#oms.alarm.ding.agent-id=847044348 - -####### Resource cleaning properties ####### -oms.instanceinfo.retention=1 -oms.container.retention.local=1 -oms.container.retention.remote=-1 - -####### Cache properties ####### -oms.instance.metadata.cache.size=1024 - -####### Threshold in precise fetching server(0~100). 100 means full detection of server, in which ####### -####### split-brain could be avoided while performance overhead would increase. ####### -oms.accurate.select.server.percentage = 50 diff --git a/mms-patulous/mms-powerjob/src/main/resources/application-prod.properties b/mms-patulous/mms-powerjob/src/main/resources/application-prod.properties deleted file mode 100644 index 0b00865..0000000 --- a/mms-patulous/mms-powerjob/src/main/resources/application-prod.properties +++ /dev/null @@ -1,49 +0,0 @@ -oms.env=prod - -####### Database properties(Configure according to the the environment) ####### -spring.datasource.core.driver-class-name=com.mysql.cj.jdbc.Driver -spring.datasource.core.jdbc-url=jdbc:mysql://localhost:3306/sxpcwlkj_mms?useUnicode=true&characterEncoding=UTF-8&serverTimezone=Asia/Shanghai -spring.datasource.core.username=sxpcwlkj_mms -spring.datasource.core.password=dkfa7WNTbdDJB8ny -spring.datasource.core.maximum-pool-size=20 -spring.datasource.core.minimum-idle=5 - - -# ===== Spring Boot Admin Server ===== -spring.boot.admin.client.enabled=true -spring.boot.admin.client.instance.service-host-type=IP -spring.boot.admin.client.url=http://localhost:9001 -spring.boot.admin.client.username=admin -spring.boot.admin.client.password=123456 - -####### MongoDB properties(Non-core configuration properties) ####### -####### delete mongodb config to disable mongodb ####### -oms.mongodb.enable=false -#spring.data.mongodb.uri=mongodb+srv://zqq:No1Bug2Please3!@cluster0.wie54.gcp.mongodb.net/powerjob_daily?retryWrites=true&w=majority - -####### Email properties(Non-core configuration properties) ####### -####### Delete the following code to disable the mail ####### -#spring.mail.host=smtp.163.com -#spring.mail.username= -#spring.mail.password= -#spring.mail.properties.mail.smtp.auth=true -#spring.mail.properties.mail.smtp.starttls.enable=true -#spring.mail.properties.mail.smtp.starttls.required=true - -####### DingTalk properties(Non-core configuration properties) ####### -####### Delete the following code to disable the DingTalk ####### -#oms.alarm.ding.app-key=dingauqwkvxxnqskknfv -#oms.alarm.ding.app-secret=XWrEPdAZMPgJeFtHuL0LH73LRj-74umF2_0BFcoXMfvnX0pCQvt0rpb1JOJU_HLl -#oms.alarm.ding.agent-id=847044348 - -####### Resource cleaning properties ####### -oms.instanceinfo.retention=7 -oms.container.retention.local=7 -oms.container.retention.remote=-1 - -####### Cache properties ####### -oms.instance.metadata.cache.size=2048 - -####### Threshold in precise fetching server(0~100). 100 means full detection of server, in which ####### -####### split-brain could be avoided while performance overhead would increase. ####### -oms.accurate.select.server.percentage = 50 diff --git a/mms-patulous/mms-powerjob/src/main/resources/application.properties b/mms-patulous/mms-powerjob/src/main/resources/application.properties deleted file mode 100644 index be6f7b6..0000000 --- a/mms-patulous/mms-powerjob/src/main/resources/application.properties +++ /dev/null @@ -1,30 +0,0 @@ -# Http server port -server.port=7700 -spring.application.name=MMS PowerJob -spring.profiles.active=@profiles.active@ -spring.main.banner-mode=log -spring.jpa.open-in-view=false -spring.data.mongodb.repositories.type=none -logging.level.org.mongodb=warn -logging.config=classpath:logback-plus.xml - -# Configuration for uploading files. -spring.servlet.multipart.enabled=true -spring.servlet.multipart.file-size-threshold=0 -spring.servlet.multipart.max-file-size=209715200 -spring.servlet.multipart.max-request-size=209715200 - -###### PowerJob transporter configuration ###### -oms.transporter.active.protocols=AKKA,HTTP -oms.transporter.main.protocol=HTTP -oms.akka.port=10086 -oms.http.port=10010 -# Prefix for all tables. Default empty string. Config if you have needs, i.e. pj_ -oms.table-prefix=pj_ - -# Actuator \u76D1\u63A7\u7AEF\u70B9\u7684\u914D\u7F6E\u9879 -management.endpoints.enabled-by-default=true -management.endpoints.web.exposure.include=* -management.endpoint.health.show-details=ALWAYS -management.endpoint.logfile.external-file=./logs/powerjob-console.log -management.health.mongo.enabled=${oms.mongodb.enable} diff --git a/mms-patulous/mms-powerjob/src/main/resources/banner.txt b/mms-patulous/mms-powerjob/src/main/resources/banner.txt deleted file mode 100644 index c0fac79..0000000 --- a/mms-patulous/mms-powerjob/src/main/resources/banner.txt +++ /dev/null @@ -1,11 +0,0 @@ -Application Version: ${revision} -Spring Boot Version: ${spring-boot.version} - _ _ - (_) | | - _ __ _____ _____ _ __ _ ___ | |__ ______ ___ ___ _ ____ _____ _ __ -| '_ \ / _ \ \ /\ / / _ \ '__| |/ _ \| '_ \______/ __|/ _ \ '__\ \ / / _ \ '__| -| |_) | (_) \ V V / __/ | | | (_) | |_) | \__ \ __/ | \ V / __/ | -| .__/ \___/ \_/\_/ \___|_| | |\___/|_.__/ |___/\___|_| \_/ \___|_| -| | _/ | -|_| |__/ - diff --git a/mms-patulous/mms-powerjob/src/main/resources/logback-plus.xml b/mms-patulous/mms-powerjob/src/main/resources/logback-plus.xml deleted file mode 100644 index e78bcf3..0000000 --- a/mms-patulous/mms-powerjob/src/main/resources/logback-plus.xml +++ /dev/null @@ -1,34 +0,0 @@ - - - - logback - - - - - - - ${console.log.pattern} - utf-8 - - - - - ${log.path}.log - - ${log.path}.%d{yyyy-MM-dd}.log - - 60 - - - ${log.pattern} - - - - - - - - - diff --git a/mms-patulous/pom.xml b/mms-patulous/pom.xml deleted file mode 100644 index d77a13b..0000000 --- a/mms-patulous/pom.xml +++ /dev/null @@ -1,20 +0,0 @@ - - - 4.0.0 - - com.sxpcwlkj - mms - ${revision} - - pom - mms-patulous - 三方扩展模块 - - mms-powerjob - - mms-monitor - - - diff --git a/pom.xml b/pom.xml index 9728690..51af192 100644 --- a/pom.xml +++ b/pom.xml @@ -518,6 +518,24 @@ mms-thymeleaf ${revision} + + + com.sxpcwlkj + mms-mall-admin + ${revision} + + + + com.sxpcwlkj + mms-mall-merchant + ${revision} + + + + com.sxpcwlkj + mms-mall-api + ${revision} + @@ -564,8 +582,9 @@ mms-admin + mms-malls mms-modules - mms-patulous + mms-zoom