我使用 jax-ws commons 网站上的教程使用 jax-ws 和 Spring 开发了一个 Web 服务。它向您展示了如何从 spring applicationContext 文件 ( https://jax-ws-commons.dev.java.net/spring/ )定义和引用您的服务。
引用 Web 服务时出现“#”的原因是什么?我希望看到更多类似的东西
<ws:service name="myEventWS" ref="eventWebService"/>
但是按照上面链接中的示例,我创建了以下有效的示例。
<bean id="eventWebService" class="com.myws.EventWS">
<property name="model" ref="EventModel"/>
</bean>
<wss:binding url="/EventWS">
<wss:service>
<ws:service bean="#eventWebService"/>
</wss:service>
</wss:binding>