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

Apache CXF + SpringBoot: Can I publish multiple endpoints for one SOAP web-service?

我已经使用 Apache CXF + SpringBoot 实现了一个 SOAP Webservice。

在我的端点配置 class 中,我有

@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;
}

但它不起作用。

我真的很感激 inputs/suggestions。谢谢!

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

@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());
        });

    }


}

顺便说一句:使用 REST 可能是更好的方法?