I put a tag
<form action="/emailConfig.do">
in my jsp page
and
put action in struts_config.xml file
<action path="/emailConfig" type="a.b.EmailConfigAction" name="emailConfigForm"
scope="request" validate="false">
<forward name="success" path="/emailConfig.jsp" />
<forward name="failure" path="/emailConfig.jsp" />
</action>
but when I perform any event (button click/ link click) page is not displayed but an exception appears that is
“The requested resource (/emailConfig.do) is not available.”
Can anyone help me out what I am missing?
Resolved this issue already. I just replaced
Happy coding! 🙂