带Spring Boot的CXF

带Spring Boot的CXF,第1张

带Spring Boot的CXF

让您的

jaxwsEndpoint
bean返回的实例
org.apache.cxf.jaxws.EndpointImpl
,该实例扩展
javax.xml.ws.Endpoint

@Autowiredprivate ApplicationContext applicationContext;@DependsOn("servletRegistrationBean")@Beanpublic Endpoint jaxwsEndpoint(){   Bus bus = (Bus) applicationContext.getBean(Bus.DEFAULT_BUS_ID);   EndpointImpl endpoint = new EndpointImpl(bus, subscriberApi());   endpoint.publish("/SubscriberApi");   // also showing how to add interceptors   endpoint.getServer().getEndpoint().getInInterceptors().add(new LoggingInInterceptor());   endpoint.getServer().getEndpoint().getOutInterceptors().add(new LoggingOutInterceptor());   return endpoint;}

原始帖子不包含可运行的示例,但这应该可以解决问题。

可以在此处找到一个正在运行的示例,并将所有配置链接在一起:
Application.java



欢迎分享,转载请注明来源:内存溢出

原文地址: http://outofmemory.cn/zaji/5153147.html

(0)
打赏 微信扫一扫 微信扫一扫 支付宝扫一扫 支付宝扫一扫
上一篇 2022-11-18
下一篇 2022-11-18

发表评论

登录后才能评论

评论列表(0条)

保存