线程池配置文件
@Data
@ConfigurationProperties(prefix = "myconfig.thread")
public class MyThreadProperties {
private final Integer DEFAULT_CORE_SIZE = 20;
private final Integer DEFAULT_MAX_SIZE = 30;
private final Integer KEEP_LIVE_TIME = 10;
private Integer coreSize = DEFAULT_CORE_SIZE;
private Integer maxSize = DEFAULT_MAX_SIZE;
private Integer keepLiveTime = KEEP_LIVE_TIME;
}

浙公网安备 33010602011771号