去除spring aop和无用的注解,该注解曾用于线程池,会导致原有的线程池失效

This commit is contained in:
wind 2023-06-06 19:36:11 +08:00
parent fd1e908df5
commit aeb5068ae9
3 changed files with 0 additions and 13 deletions

View File

@ -127,13 +127,6 @@
<version>${forest.version}</version>
</dependency>
<!--aop依赖-->
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-aop</artifactId>
<version>${spring.boot.version}</version>
</dependency>
<!-- redis 缓存操作 -->
<dependency>
<groupId>org.springframework.boot</groupId>

View File

@ -15,11 +15,6 @@
<description>sms4j-autoimmit</description>
<dependencies>
<!--aop依赖-->
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-aop</artifactId>
</dependency>
<dependency>
<groupId>org.springframework.boot</groupId>

View File

@ -9,7 +9,6 @@ import org.springframework.context.annotation.Configuration;
import org.springframework.scheduling.annotation.EnableAsync;
@Configuration
@EnableAsync
@Data
public class SmsMainConfig {