I am using Struts2 and Hibernate in my project. I need to use a namespace for my project. The namespaces configurations are working well.
But after using namespaces, the design is completely collapsed. Without namespaces it's working well. Can any one give me a solution?
Here is my configuration:
<struts>
<package name="login" extends="struts-default" namespace="/login">
<action name="login" class="login.action.LoginAction">
<result name="input" type="dispatcher">/login.jsp</result>
<result name="success" type="chain">
<param name="actionName">view_all</param>
<param name="namespace">/login</param>
</result>
<result name="error" type="dispatcher">/login.jsp</result>
</action>
<action name="view_all" class="action.RolesAction">
<result name="success" type="dispatcher">basic_roles_search.jsp</result>
</action>
</package>
</struts>
<s:form action="login" method="post" theme="simple" Class="form" namespace="/login2">
-----
</form>
<s:url>tag for including static content. See struts.apache.org/2.x/docs/url.html. – Aleksandr M Nov 2 '12 at 13:35