I want to use CXF to load webservices on demand in a SpringBoot application.
I have a single org.apache.cxf.transport.servlet.CXFServlet and a single 
org.apache.cxf.bus.spring.SpringBus instances and I use this approach to 
register and publish enpoints: https://cxf.apache.org/docs/springboot.html

> EndpointImpl endpoint = new EndpointImpl(bus, new HelloPortImpl());
> endpoint.publish("/Hello");

Is this way thread safe? Can I perform multiple, independent publishings in 
parallel or should I synchronize them and allow one at a time?
Regards
Tomasz P.

Reply via email to