如何在Spring-WS中定义基于模式的端点

时间:2012-05-13 04:30:43

标签: java web-services annotations spring-ws endpoint

在Spring WS中,端点通常使用@Endpoint注释进行注释。例如

@Endpoint
public class HolidayEndpoint {
    ...
}

我的问题是:有没有办法来定义基于模式的端点(基于XML配置)?感谢...

2 个答案:

答案 0 :(得分:1)

在spring-ws-servlet.xml配置中,添加以下内容:

<?xml version="1.0" encoding="UTF-8"?>
<beans>
    <context:annotation-config />
    <sws:annotation-driven />
    <sws:dynamic-wsdl id="holidayEndPoint" portTypeName="HolidayEndpoint"
............
......

可以从这里获得更多信息

Unable to access web service endpoint: Spring-WS 2

可能会对你有帮助。

答案 1 :(得分:0)

生成并发布wsdl:

<sws:dynamic-wsdl id="EntityService" portTypeName="Entity" locationUri="/ws/EntityService/"
    targetNamespace="http://me.com/myproject/definitions">
    <sws:xsd location="WEB-INF/schemas/EntityCommons.xsd" />
    <sws:xsd location="WEB-INF/schemas/EntityService.xsd" />
</sws:dynamic-wsdl>

<bean class="org.springframework.web.servlet.handler.SimpleUrlHandlerMapping">
    <property name="mappings">
        <props>
            <prop key="ws/EntityService/*.wsdl">EntityService</prop>
        </props>
    </property>
    <property name="defaultHandler" ref="messageDispatcher" />
</bean>

设置拦截器:

<sws:interceptors>
    <bean class="org.springframework.ws.server.endpoint.interceptor.PayloadLoggingInterceptor" />

        <!-- Postel's Law: “Be conservative in what you do; be liberal in what you accept from others.” -->
        <bean id="validatingInterceptor" class="org.springframework.ws.soap.server.endpoint.interceptor.PayloadValidatingInterceptor">
        <property name="schema" value="WEB-INF/schemas/EntityService.xsd"/>
        <property name="validateRequest" value="false"/>
        <property name="validateResponse" value="true"/>
    </bean>
</sws:interceptors>

或者,如果您使用的是JAXB,则可以配置编组程序以使用模式。