Apache CXF + SpringBoot:我可以为一个SOAP Web服务发布多个端点吗?

时间:2018-02-14 00:51:11

标签: web-services spring-boot soap cxf

我使用Apache CXF + SpringBoot实现了一个SOAP Web服务。

在我的Endpoint Configuration类中,我有

@Bean
public Endpoint endpoint()
{
    EndpointImpl endpoint = new EndpointImpl(cxfBus, new ServiceImpl());
    endpoint.publish("/myservice");
    return endpoint;
}

这将创建一个Web服务端点https://host:port/myService

对于这项服务,我需要公开多个端点 - 类似于 - https://host:port/tenant1/myService
https://host:port/tenant2/myService
https://host:port/tenant3/myService

这是一种REST端点 - 即,我试图在服务端点中传递tenantId变量。

这在Apache CXF + Springboot中是否可行?

我试过了 -

@Bean
public Endpoint endpoint()
{
    EndpointImpl endpoint = new EndpointImpl(cxfBus, new ServiceImpl()); 
    String[] pathArray = {"tenant1", "tenant2", "tenant3"};
    for (int i = 0; i < pathArray.length; i++)
    {
        endpoint.publish("/" + pathArray[i] + "/myservice");
    }
    return endpoint;
}

但它不起作用。

我非常感谢任何意见/建议。谢谢!

1 个答案:

答案 0 :(得分:2)

不,您不能将相同的端点映射到多个URL,一个端点是为wsdl文件创建的,该文件将生成单个类。从网址中我假设您希望基于租户在多个网址上托管相同的服务。在这种情况下,您必须为每个租户创建端点。

@Bean
public Endpoint endpoint1()
{
    EndpointImpl endpoint = new EndpointImpl(cxfBus, new ServiceImpl()); 
    endpoint.publish("/tenant1/" + pathArray[i] + "/myservice");
    return endpoint;
}

@Bean
public Endpoint endpoint2()
{
    EndpointImpl endpoint = new EndpointImpl(cxfBus, new ServiceImpl()); 
    endpoint.publish("/tenant1/" + pathArray[i] + "/myservice");
    return endpoint;
}

@Configuration
public class CxfConfiguration implements BeanFactoryPostProcessor {

    @Override
    public void postProcessBeanFactory(ConfigurableListableBeanFactory factory) throws BeansException {

        Arrays.stream(new String[] { "tenant1", "tenant2" }).forEach(str -> {
            Bus bus = factory.getBean(Bus.class);
            JaxWsServerFactoryBean bean = new JaxWsServerFactoryBean();
            bean.setAddress("/" + str + "/myService");
            bean.setBus(bus);
            bean.setServiceClass(HelloWorld.class);
            factory.registerSingleton(str, bean.create());
        });

    }


}
BTW:使用REST可能更好吗?