diff --git a/servers/boe-server-case/pom.xml b/servers/boe-server-case/pom.xml
deleted file mode 100644
index 1297dafc..00000000
--- a/servers/boe-server-case/pom.xml
+++ /dev/null
@@ -1,180 +0,0 @@
-
-
- 4.0.0
-
- org.springframework.boot
- spring-boot-starter-parent
- 2.6.3
-
-
- com.xboe
- boe-server-case
- 2.0.0
- boe-server-case
- BOEDX项目的任务处理服务
-
- 1.8
-
-
-
-
- com.xboe
- xboe-core
- 1.0.0
-
-
- com.boe
- httpsdk
- system
- 1.0.0
- ${project.basedir}/src/main/resources/libs/httpsdk-1.0.0.jar
-
-
-
- com.auth0
- java-jwt
- 3.18.3
-
-
-
-
- org.apache.commons
- commons-lang3
-
-
- commons-codec
- commons-codec
-
-
-
-
-
-
- org.springframework.boot
- spring-boot-starter-data-jpa
-
-
- org.springframework.boot
- spring-boot-starter-web
-
-
- mysql
- mysql-connector-java
- 5.1.27
-
-
-
- org.projectlombok
- lombok
- true
-
-
-
- com.aspose
- slides
- 15.9.0
- system
- ${project.basedir}/src/main/resources/aspose/aspose.slides-15.9.0.jar
-
-
- com.aspose
- words
- 15.8.0
- system
- ${project.basedir}/src/main/resources/aspose/aspose-words-15.8.0.jar
-
-
- com.aspose
- cells
- 18.11
- system
- ${project.basedir}/src/main/resources/aspose/aspose-cells-java-18.11.jar
-
-
-
-
- com.github.ulisesbocchio
- jasypt-spring-boot-starter
- 3.0.3
-
-
-
-
-
- true
- src/main/resources
-
- application-${profileActive}.properties
- application.properties
-
-
-
- false
- src/main/resources
-
- *.properties
-
-
-
-
-
- org.apache.maven.plugins
- maven-compiler-plugin
-
-
- 1.8
- 1.8
-
-
-
- org.springframework.boot
- spring-boot-maven-plugin
-
-
-
- org.projectlombok
- lombok
-
-
- true
-
-
-
-
-
-
- pro
-
- pro
-
-
-
- pre
-
- pre
-
-
-
- test
-
- test
-
-
-
- dev
-
- dev
-
-
- true
-
-
-
-
diff --git a/servers/boe-server-case/src/main/java/com/xboe/BoeServerCaseApplication.java b/servers/boe-server-case/src/main/java/com/xboe/BoeServerCaseApplication.java
deleted file mode 100644
index 61901463..00000000
--- a/servers/boe-server-case/src/main/java/com/xboe/BoeServerCaseApplication.java
+++ /dev/null
@@ -1,32 +0,0 @@
-package com.xboe;
-
-import java.io.File;
-import java.io.IOException;
-
-import javax.annotation.PostConstruct;
-
-import org.springframework.boot.SpringApplication;
-import org.springframework.boot.autoconfigure.SpringBootApplication;
-import org.springframework.boot.system.ApplicationPid;
-import org.springframework.cache.annotation.EnableCaching;
-import org.springframework.context.annotation.Configuration;
-
-@Configuration
-@SpringBootApplication
-@EnableCaching
-public class BoeServerCaseApplication {
-
- public static void main(String[] args) {
- System.setProperty("jasypt.encryptor.password","jasypt");
- SpringApplication.run(BoeServerCaseApplication.class, args);
- }
-
- @PostConstruct
- private void handlePid() throws IOException {
- File file = new File("application-case.pid");
- new ApplicationPid().write(file);
- file.deleteOnExit();
- }
-
-
-}
diff --git a/servers/boe-server-case/src/main/java/com/xboe/ResultNullToEmptyConfig.java b/servers/boe-server-case/src/main/java/com/xboe/ResultNullToEmptyConfig.java
deleted file mode 100644
index 12de9ef2..00000000
--- a/servers/boe-server-case/src/main/java/com/xboe/ResultNullToEmptyConfig.java
+++ /dev/null
@@ -1,38 +0,0 @@
-package com.xboe;
-
-import java.io.IOException;
-
-import org.springframework.boot.autoconfigure.condition.ConditionalOnMissingBean;
-import org.springframework.context.annotation.Bean;
-import org.springframework.context.annotation.Configuration;
-import org.springframework.context.annotation.Primary;
-import org.springframework.http.converter.json.Jackson2ObjectMapperBuilder;
-
-import com.fasterxml.jackson.core.JsonGenerator;
-import com.fasterxml.jackson.core.JsonProcessingException;
-import com.fasterxml.jackson.databind.JsonSerializer;
-import com.fasterxml.jackson.databind.ObjectMapper;
-import com.fasterxml.jackson.databind.SerializerProvider;
-
-/**
- * 返回的数据中如果是null 就会转化成空字符串
- *
- */
-@Configuration
-public class ResultNullToEmptyConfig {
-
- @Bean
- @Primary
- @ConditionalOnMissingBean(ObjectMapper.class)
- public ObjectMapper jacksonObjectMapper(Jackson2ObjectMapperBuilder builder) {
- ObjectMapper objectMapper = builder.createXmlMapper(false).build();
- objectMapper.getSerializerProvider().setNullValueSerializer(new JsonSerializer