让您的
jaxwsEndpointbean返回的实例
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
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)