Skip to content

Commit

Permalink
feat(*):
Browse files Browse the repository at this point in the history
- 重构Code逻辑
- 废弃knife4j
- 废弃Actable
- 业务数据结构非空
  • Loading branch information
1095071913 committed Sep 17, 2024
1 parent cd17185 commit 20ff882
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 18 deletions.
4 changes: 2 additions & 2 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
<parent>
<groupId>com.maozi</groupId>
<artifactId>maozi-cloud-parent</artifactId>
<version>1.1.0</version>
<version>1.1.1</version>
<relativePath/>
</parent>
<artifactId>maozi-cloud-basics-monitor</artifactId>
Expand All @@ -15,7 +15,7 @@

<properties>

<revision>1.3.0</revision>
<revision>1.3.1</revision>

<maven.test.skip>true</maven.test.skip>
<maven.install.skip>true</maven.install.skip>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,6 @@
public class ApplicationNameMessageConverter extends MessageConverter {
@Override
public String convert(ILoggingEvent event) {
return ApplicationEnvironmentContext.applicationName;
return ApplicationEnvironmentContext.APPLICATION_NAME;
}
}
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,6 @@
public class EnvironmentMessageConverter extends MessageConverter {
@Override
public String convert(ILoggingEvent event) {
return ApplicationEnvironmentContext.environment;
return ApplicationEnvironmentContext.ENVIRONMENT;
}
}
14 changes: 0 additions & 14 deletions src/main/java/com/maozi/monitor/config/Config.java
Original file line number Diff line number Diff line change
Expand Up @@ -20,20 +20,6 @@
import de.codecentric.boot.admin.server.config.EnableAdminServer;
import org.springframework.context.annotation.Configuration;

/**
*
* Specifications:功能
*
* Author:彭晋龙
*
* Creation Date:2021-12-18:16:32:34
*
* Copyright Ownership:xiao mao zi
*
* Agreement That:Apache 2.0
*
*/

@Configuration
@EnableAdminServer
public class Config {}

0 comments on commit 20ff882

Please sign in to comment.