疯狂的狮子li
2022-12-28 6ee30852606dc7d28a6838ac0d837714d8fc9aab
ruoyi-framework/src/main/java/com/ruoyi/framework/config/properties/ThreadPoolProperties.java
@@ -5,7 +5,7 @@
import org.springframework.stereotype.Component;
/**
 * 验证码 配置属性
 * 线程池 配置属性
 *
 * @author Lion Li
 */
@@ -20,16 +20,6 @@
    private boolean enabled;
    /**
     * 核心线程池大小
     */
    private int corePoolSize;
    /**
     * 最大可创建的线程数
     */
    private int maxPoolSize;
    /**
     * 队列最大长度
     */
    private int queueCapacity;
@@ -38,10 +28,5 @@
     * 线程池维护线程所允许的空闲时间
     */
    private int keepAliveSeconds;
    /**
     * 线程池对拒绝任务(无线程可用)的处理策略
     */
    private String rejectedExecutionHandler;
}