package com.artfess.cqlt.config; import lombok.Data; import org.springframework.boot.context.properties.ConfigurationProperties; /** * 线程池属性类 */ @ConfigurationProperties(prefix = "cqlt.thread") // @Component @Data public class ThreadPoolConfigProperties { private Integer coreSize; private Integer maxSize; private Integer keepAliveTime; }