cxf动态调用webservice设立超时,测试线程安全

cxf动态调用webservice设置超时,测试线程安全
import java.util.Random;
import java.util.concurrent.ArrayBlockingQueue;
import java.util.concurrent.ThreadPoolExecutor;
import java.util.concurrent.TimeUnit;

import org.apache.cxf.endpoint.Client;
import org.apache.cxf.jaxws.endpoint.dynamic.JaxWsDynamicClientFactory;
import org.apache.cxf.transport.http.HTTPConduit;
import org.apache.cxf.transports.http.configuration.HTTPClientPolicy;

public class WSClient {
	public static void main(String[] args)throws Exception {
		String wsdlUrl = "http://172.16.11.11:8080/webws/CalculatorPort?wsdl";
		//动态调用的客户端工厂类
		JaxWsDynamicClientFactory factory = JaxWsDynamicClientFactory.newInstance();
		final Client client = factory.createClient(wsdlUrl);

		//设置超时单位为毫秒
		HTTPConduit http = (HTTPConduit) client.getConduit();      
		HTTPClientPolicy httpClientPolicy = new HTTPClientPolicy();      
		httpClientPolicy.setConnectionTimeout(3000);  //连接超时    
		httpClientPolicy.setAllowChunking(false);    //取消块编码 
		httpClientPolicy.setReceiveTimeout(3000);     //响应超时
		http.setClient(httpClientPolicy);
		
		//用线程池试了下client对象线程安全性,发现是安全的
		ThreadPoolExecutor pool = new ThreadPoolExecutor(5,50,1000,
				TimeUnit.MICROSECONDS,new ArrayBlockingQueue<Runnable>(50));
		for (int i=0;i<100;i++){
			pool.execute(new Runnable() {
				@Override
				public void run() {
					try {
						String threadName = Thread.currentThread().getName();
						int a = new Random().nextInt(10);
						int b = new Random().nextInt(10);
						Object[] res = client.invoke("adD", a,b);
						System.out.println(threadName+":"+a+"+"+b+"="+res[0]);
					} catch (Exception e) {
						e.printStackTrace();
					}
				}
			});
		}
	}
}

 结果:

pool-1-thread-37:0+5=5
pool-1-thread-21:1+4=5
pool-1-thread-33:6+3=9
pool-1-thread-49:6+0=6
pool-1-thread-42:7+1=8
...
...
...
pool-1-thread-7:7+5=12
pool-1-thread-46:9+2=11
pool-1-thread-17:6+2=8
pool-1-thread-34:2+3=5
pool-1-thread-36:8+3=11
pool-1-thread-40:1+9=10
pool-1-thread-26:4+4=8
pool-1-thread-35:3+4=7