日志记录优化:全服务支持异步方法、异步配置从job移到web

This commit is contained in:
gaoqr
2025-01-18 11:54:34 +08:00
parent addbf16eed
commit a8d2d24f96
8 changed files with 17 additions and 24 deletions
@@ -4,7 +4,6 @@ import org.springframework.boot.SpringApplication;
import org.springframework.boot.autoconfigure.SpringBootApplication;
import org.springframework.cloud.openfeign.EnableFeignClients;
import org.springframework.context.annotation.EnableAspectJAutoProxy;
import org.springframework.scheduling.annotation.EnableAsync;
/**
* @author there
@@ -12,7 +11,6 @@ import org.springframework.scheduling.annotation.EnableAsync;
@SpringBootApplication
@EnableAspectJAutoProxy(exposeProxy = true) // add config
@EnableFeignClients
@EnableAsync
public class ManageServerApplication {
public static void main(String[] args) {
SpringApplication.run(ManageServerApplication.class, args);