线程池配置文件

@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;
}
posted @ 2021-10-13 22:03  一只大冬瓜  阅读(168)  评论(0)    收藏  举报