由内向外同步
parent
c807bfe86e
commit
f6fae6f462
@ -0,0 +1,38 @@
|
||||
package com.glxp.sale.admin.config;
|
||||
|
||||
import org.springframework.context.annotation.Bean;
|
||||
import org.springframework.context.annotation.Configuration;
|
||||
import org.springframework.scheduling.annotation.EnableAsync;
|
||||
import org.springframework.scheduling.concurrent.ThreadPoolTaskExecutor;
|
||||
|
||||
import java.util.concurrent.ThreadPoolExecutor;
|
||||
|
||||
/**
|
||||
* 配置线程池
|
||||
*/
|
||||
@Configuration
|
||||
@EnableAsync
|
||||
public class TaskPoolConfig {
|
||||
|
||||
@Bean(name = "taskExecutor")
|
||||
public ThreadPoolTaskExecutor taskExecutor() {
|
||||
// 获取当前主机的cpu核心数
|
||||
int threadCount = Runtime.getRuntime().availableProcessors();
|
||||
ThreadPoolTaskExecutor taskExecutor = new ThreadPoolTaskExecutor();
|
||||
//核心池的大小
|
||||
taskExecutor.setCorePoolSize(threadCount);
|
||||
//线程池最大线程数
|
||||
taskExecutor.setMaxPoolSize(threadCount * 2);
|
||||
//队列最大长度
|
||||
taskExecutor.setQueueCapacity(200);
|
||||
//线程空闲时间
|
||||
taskExecutor.setKeepAliveSeconds(60);
|
||||
//配置线程前缀
|
||||
taskExecutor.setThreadNamePrefix("custom_executor");
|
||||
//配置拒绝策略
|
||||
taskExecutor.setRejectedExecutionHandler(new ThreadPoolExecutor.CallerRunsPolicy());
|
||||
//执行初始化
|
||||
taskExecutor.initialize();
|
||||
return taskExecutor;
|
||||
}
|
||||
}
|
@ -0,0 +1,19 @@
|
||||
package com.glxp.sale.admin.req.sync;
|
||||
|
||||
import com.glxp.sale.admin.constant.BasicExportTypeEnum;
|
||||
import lombok.AllArgsConstructor;
|
||||
import lombok.Builder;
|
||||
import lombok.Data;
|
||||
import lombok.NoArgsConstructor;
|
||||
|
||||
@Data
|
||||
@AllArgsConstructor
|
||||
@NoArgsConstructor
|
||||
@Builder
|
||||
public class SyncUpLoadRequest {
|
||||
|
||||
private BasicExportTypeEnum exportType;
|
||||
|
||||
private Object data;
|
||||
|
||||
}
|
Loading…
Reference in New Issue