@Data
@ConfigurationProperties(prefix = "gulimal.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;
}