Solved : No configuration found for the specified action
Issue: Warning : No configuration found for the specified action on struts 2 action call..
..
..
<package name="readNode" extends="struts-default,json-default" namespace="/">
</package>
Jsp
<s:form action="login" method="POST">
<s:textfield name="user" label="User" />
<br>
<s:password name="password
Problematic Code :
<s:form action="/login" method="POST">
<s:textfield name="user" label="User" />
<br>
<s:password
or
<s:form action="/login.action" method="POST">
<s:textfield name="user" label="User" />
<br>
<s:password