为WebService指定线程池

Posted KoKo

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了为WebService指定线程池相关的知识,希望对你有一定的参考价值。

通过阅读WebService发布过程的源代码,可以配置自定义的线程池

 

package org.zln.ws.server;

import com.sun.xml.internal.ws.api.BindingID;
import com.sun.xml.internal.ws.transport.http.server.EndpointImpl;
import org.slf4j.Logger;
import org.slf4j.LoggerFactory;

import javax.xml.ws.WebServiceFeature;
import java.util.concurrent.Executor;
import java.util.concurrent.Executors;

/**
* Created by sherry on 16/12/15.
*/
public class Main {

/**
* 日志
*/
private static Logger logger = LoggerFactory.getLogger(Main.class);

public static void main(String[] args) {
UserService userService = new UserService();
String address = "http://localhost:8080/Service/UserService";
EndpointImpl endpoint = new EndpointImpl(BindingID.parse(userService.getClass()), userService, new WebServiceFeature[0]);
Executor executor = Executors.newFixedThreadPool(2);
endpoint.setExecutor(executor);
endpoint.publish(address);

logger.debug("Service服务发布成功");
}

}

































以上是关于为WebService指定线程池的主要内容,如果未能解决你的问题,请参考以下文章

关于线程池newFixedThreadPool使用注意事项

Android 调用webService+回调接口+线程池工具类封装(支持json格式接口和xml格式接口)

Android 多线程下载,断点续传,线程池

线程池与并行度

Java——线程池

Motan在服务provider端用于处理request的线程池