我有一个通过 JAX-WS 的 Web 服务问题。如果我在 web 方法中启动线程,它将在与客户端的连接结束时结束。
例子:
@WebMethod(operationName="test")
public boolean test()
{
Thread th = new MyThread();
th.start();
// Thread is running
...
return true;
// Now thread th ends;
}
有什么解决方案可以保持线程运行吗?