Spring-boot和apache-cxf:创建多个端点

时间:2018-06-30 04:16:24

标签: spring-boot soap cxf

我想为Spring Boot应用程序动态创建具有不同地址的多个端点。我知道可以使用以下方法来做到这一点:

String address[]=new address {"soap1","soap2"}; for(String adr:address){ Endpoint.publish("/"+adr+"/hello",new helloImpl()); }

如何使用Spring Boot进行操作,以及如何为每个引导程序添加拦截器。

0 个答案:

没有答案