这个struts-config.xml有什么问题?

时间:2011-02-18 10:59:51

标签: jsp struts struts-1 struts-config

获得以下错误:    java.lang.NullPointerException:Module' null'没找到。

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


    <struts-config>

        <form-beans>
            <form-bean name="RegistrationForm" type="com.testapp.actionform.RegistrationForm" />
        </form-beans>

        <global-exceptions>
        </global-exceptions>

        <global-forwards>
        </global-forwards>

        <action-mappings>

            <action path="/Registration" type="com.testapp.action.RegistrationAction" name="RegistrationForm"   scope="request" validate="false" input="index.jsp" >
                <forward name="success" path="/pages/RegistrationSuccess.jsp" />
            </action>

        </action-mappings>

        <message-resources parameter="resources.Application" />

    </struts-config>

3 个答案:

答案 0 :(得分:1)

您是否在web.xml中设置了servlet映射

    <servlet>
    <servlet-name>action</servlet-name>
    <servlet-class>org.apache.struts.action.ActionServlet</servlet-class>
    <init-param>
        <param-name>config</param-name>
        <param-value>/WEB-INF/struts-config.xml</param-value>           
    </init-param>

1     

请参阅docs

中有关“配置模块应用程序”的部分

答案 1 :(得分:0)

似乎没有错。您的消息资源是否存在于WEB-INF / classes / resources / Application.properties?

答案 2 :(得分:0)

得到了错误。

只是web.xml文件中的拼写错误。

<servlet-class>org.**apche**.struts.action.ActionServlet</servlet-class>
无论如何,谢谢你们。