gpt4 book ai didi

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

转载 作者:行者123 更新时间:2023-12-02 01:03:55 25 4
gpt4 key购买 nike

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

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

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

但它不起作用。

如果有任何意见/建议,我将不胜感激。谢谢!

最佳答案

不,您不能将相同的端点映射到多个 url,一个端点是为 wsdl 文件创建的,该文件将生成为单个类。从 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 可能是更好的方法?

关于web-services - Apache CXF + SpringBoot : Can I publish multiple endpoints for one SOAP web-service?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/48778052/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com