我已经使用apache cxf springboot实现了肥皂服务。
在我的端点配置类中,我有
@Bean
public Endpoint endpoint()
{
EndpointImpl endpoint = new EndpointImpl(cxfBus, new ServiceImpl());
endpoint.publish("/myservice");
return endpoint;
}
这将创建一个Web服务端点,为https://主机:port/myService
到此服务,我需要公开多个端点 - 类似 - https://主机:port/tenant1/myService
https://主机:port/tenant2/myService
https://主机:port/tenant3/myService
这是一种休息端 - 即,我试图通过服务端点中的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());
});
}
}
btw:可能是更好的方法使用休息?