Getting the following error : java.lang.NullPointerException: Module 'null' not found.
<?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>
Do you have the servlet mapping setup in the web.xml
1
see the section on "configuring your application for modules" in the docs