spring-对线程池的支持

来源:互联网 发布:php ini set 不起作用 编辑:程序博客网 时间:2024/05/24 04:32


<!-- 线程的配置文件: corePoolSize: 线程池维护线程的最少数量  keepAliveSeconds  线程池维护线程所允许的空闲时间  maxPoolSize   线程池维护线程的最大数量 queueCapacity 线程池所使用的缓冲队列 -->


<bean id ="taskExecutor"  class ="org.springframework.scheduling.concurrent.ThreadPoolTaskExecutor" >
        <property name ="corePoolSize" value ="10" />
        <property name ="maxPoolSize" value ="50" />
        <property name ="keepAliveSeconds" value ="300" /> 
        <property name ="queueCapacity" value ="1000" />
        <property name="rejectedExecutionHandler">
            <bean class="java.util.concurrent.ThreadPoolExecutor$CallerRunsPolicy" />
        </property>
    </bean>



spring 配置异步要点

 一般可以简单的用@Async来配置一个异步方法。例如
复制代码
1 /**
2 * 发送MIME格式的用户修改通知邮件
3 */
4 @Async 
5 public void sendNotificationMail(Map keyValue,String toAddress,String subJect,String templateName) {
6 
7 String[] toList={toAddress};        sendNotificationMail(keyValue,toList,subJect,templateName) ;
8 }  
复制代码


但是这么做只是简单做法,大概积累3封邮件以后就会堵塞线程。

 

所以要加上配置文件

 

<task:annotation-driven executor="myExecutor" scheduler="myScheduler" />
<task:executor id="myExecutor" pool-size="50" />
<task:scheduler id="myScheduler" pool-size="1000" />  

 

但是只这么做,会报错

 

Caused by: org.xml.sax.SAXParseException: The prefix "task" for element "task:annotation-driven" is not bound. 

 

核心还是在最后。

 

在配置文件的前面加上

 

复制代码
   <beans xmlns="http://www.springframework.org/schema/beans" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" 
 xmlns:aop="http://www.springframework.org/schema/aop" xmlns:context="http://www.springframework.org/schema/context" 
    xmlns:jdbc="http://www.springframework.org/schema/jdbc" xmlns:tx="http://www.springframework.org/schema/tx"
    xmlns:jpa="http://www.springframework.org/schema/data/jpa"
    xmlns:task="http://www.springframework.org/schema/task"
    xsi:schemaLocation="
        http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans-3.1.xsd
        http://www.springframework.org/schema/aop http://www.springframework.org/schema/aop/spring-aop-3.1.xsd
        http://www.springframework.org/schema/context http://www.springframework.org/schema/context/spring-context-3.1.xsd
        http://www.springframework.org/schema/jdbc http://www.springframework.org/schema/jdbc/spring-jdbc-3.1.xsd
        http://www.springframework.org/schema/tx http://www.springframework.org/schema/tx/spring-tx-3.1.xsd
        http://www.springframework.org/schema/data/jpa http://www.springframework.org/schema/data/jpa/spring-jpa.xsd
        http://www.springframework.org/schema/task http://www.springframework.org/schema/task/spring-task.xsd"
        default-lazy-init="true">
复制代码

   

里面的task段落加上就OK了 




0 0