Apache cxf和Spring Boot为同一服务创建多个端点

时间:2018-06-29 19:08:45

标签: spring-boot cxf

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

Endpoint.publish

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

如何使用Spring Boot进行操作以及如何添加拦截器

0 个答案:

没有答案