异步和非阻塞SOAP服务器

时间:2016-06-17 12:38:11

标签: java asynchronous soap nonblocking

我们使用spring执行异步和非阻塞这样的事情:

@RequestMapping("/async")
public Callable<String> processUpload(final MultipartFile file) {

    return new Callable<String>() {
        public String call() throws Exception {
            Thread.sleep(2000)
            return "someView";
        }
    };

}

确实非常快(spring boot java 8 + tomcat 8

问题是我们也希望用SOAP webservices做到这一点,在这里我们找到很少的关于它的页面。 我发现了一些here,但我认为它是异步客户端

在cxf jaxws或其他方面有什么办法吗?

0 个答案:

没有答案