We've played with async and non blocking with spring doing stuff like this:
@RequestMapping("/async")
public Callable<String> processUpload(final MultipartFile file) {
return new Callable<String>() {
public String call() throws Exception {
Thread.sleep(2000)
return "someView";
}
};
}
It runs very fast indeed (spring boot java 8 + tomcat 8)
Problem is taht we want to do it also with SOAP webservices and here we find very little page about it. I've found something here but it is for async client I think
Any way to do this in cxf jaxws or others?