thread.xml 2.0 KB

1234567891011121314151617181920212223242526272829303132
  1. <?xml version="1.0" encoding="UTF-8" ?>
  2. <beans xmlns="http://www.springframework.org/schema/beans"
  3. xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
  4. xmlns:p="http://www.springframework.org/schema/p"
  5. xmlns:context="http://www.springframework.org/schema/context"
  6. xsi:schemaLocation="http://www.springframework.org/schema/beans
  7. http://www.springframework.org/schema/beans/spring-beans-3.0.xsd
  8. http://www.springframework.org/schema/context
  9. http://www.springframework.org/schema/context/spring-context-3.0.xsd">
  10. <bean id="threadPoolTaskExecutor"
  11. class="org.springframework.scheduling.concurrent.ThreadPoolTaskExecutor">
  12. <!-- 核心线程数,默认为1 -->
  13. <property name="corePoolSize" value="20" />
  14. <!-- 最大线程数,默认为Integer.MAX_VALUE -->
  15. <property name="maxPoolSize" value="100" />
  16. <!-- 队列最大长度,一般需要设置值>=notifyScheduledMainExecutor.maxNum;默认为Integer.MAX_VALUE
  17. <property name="queueCapacity" value="1000" /> -->
  18. <!-- 线程池维护线程所允许的空闲时间,默认为60s -->
  19. <property name="keepAliveSeconds" value="300" />
  20. <!-- 线程池对拒绝任务(无线程可用)的处理策略,目前只支持AbortPolicy、CallerRunsPolicy;默认为后者 -->
  21. <property name="rejectedExecutionHandler">
  22. <!-- AbortPolicy:直接抛出java.util.concurrent.RejectedExecutionException异常 -->
  23. <!-- CallerRunsPolicy:主线程直接执行该任务,执行完之后尝试添加下一个任务到线程池中,可以有效降低向线程池内添加任务的速度 -->
  24. <!-- DiscardOldestPolicy:抛弃旧的任务、暂不支持;会导致被丢弃的任务无法再次被执行 -->
  25. <!-- DiscardPolicy:抛弃当前任务、暂不支持;会导致被丢弃的任务无法再次被执行 -->
  26. <bean class="java.util.concurrent.ThreadPoolExecutor$CallerRunsPolicy" />
  27. </property>
  28. </bean>
  29. </beans>