Struts + Spring Integration问题与struts-config.xml有关

时间:2013-05-02 08:24:05

标签: spring spring-mvc struts struts-config struts-validation

我正在尝试将Struts与Spring集成。 仅Struts工作正常。但是,当我试图把

<plug-in className="org.springframework.web.struts.ContextLoaderPlugIn">
        <set-property property="contextConfigLocation"
            value="/WEB-INF/lib/WebApplicationSpringContext.xml" />
    </plug-in>
    <controller processorClass="org.springframework.web.struts.DelegatingRequestProcessor" />
struts-config.xml中的

元素,xml开始抛出

The content of element type "struts-config" must match "(data-sources?,form-beans?,global-exceptions?,global-
 forwards?,action-mappings?,controller?,message-resources*,plug-in*)".

以下是我的struts-config.xml

<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE struts-config PUBLIC "-//Apache Software Foundation//DTD Struts Configuration 1.1//EN"
"http://jakarta.apache.org/struts/dtds/struts-config_1_1.dtd">

<struts-config>


    <form-beans>
        <form-bean name="userForm"
            type="com.sample.form.UserForm" />
    </form-beans>

    <action-mappings>

    <action path="/user" type="com.sample.action.UserAction"
            name="userForm" scope="request" validate="true">
            <forward name="success" path="/WEB-INF/jsp/welcome.jsp" />
            <forward name="failed" path="/WEB-INF/jsp/user.jsp" />
        </action>

    </action-mappings>

<plug-in className="org.springframework.web.struts.ContextLoaderPlugIn">
        <set-property property="contextConfigLocation"
            value="/WEB-INF/lib/WebApplicationSpringContext.xml" />
    </plug-in>

    <controller processorClass="org.springframework.web.struts.DelegatingRequestProcessor" />

</struts-config>

以下是WebApplicationSpringContext.xml

<?xml version="1.0" encoding="UTF-8" ?>

<beans:beans xmlns="http://www.springframework.org/schema/security"
    xmlns:beans="http://www.springframework.org/schema/beans" xmlns:p="http://www.springframework.org/schema/p"
    xmlns:tx="http://www.springframework.org/schema/tx" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
    xsi:schemaLocation="http://www.springframework.org/schema/beans
        http://www.springframework.org/schema/beans/spring-beans-3.0.xsd
        http://www.springframework.org/schema/jdbc
        http://www.springframework.org/schema/jdbc/spring-jdbc-3.0.xsd      
        http://www.springframework.org/schema/security
        http://www.springframework.org/schema/security/spring-security-3.0.xsd
        http://www.springframework.org/schema/tx
        http://www.springframework.org/schema/tx/spring-tx-3.0.xsd">

    <beans:bean name="/user" id="user"
        class="com.sample.action.UserAction">
        <beans:constructor-arg index="0" value="sample" />
    </beans:bean>

</beans:beans>

我坚持使用struts-config.xml。提前致谢。欢迎任何建议。

1 个答案:

答案 0 :(得分:2)

  

元素类型“struts-config”的内容必须匹配“(data-sources?,form-b​​eans ?, global-exceptions?,global-    转发?,动作映射?,控制器?,消息资源*,插件*)”。

尝试推杆:

<controller processorClass=...

以上:

<plug-in className="

意思是切换标签顺序