| Author |
Struts 2 - wrong method executed
|
shukla raghav
Ranch Hand
Joined: Aug 03, 2008
Posts: 184
|
|
Simple JSP Page
struts.xml
Action Class
when i call the application using the following url : http://localhost/Struts2App/user_login.action
i reach the login page (userJSP.jsp). But when i enter the username and password and submit it should ideally execute the userLogin() method in the action class siince the <s:form> tag has value of action attribute as user_login!userLogin . it means it should execute the userLogin method of the action named user_login but it executes the default execute method of the action user_login. why so ? when i am specifying in the form tag which method i want to be called then why is it executing the default method.
|
 |
selvaraju sellamuthu
Ranch Hand
Joined: Jun 28, 2007
Posts: 53
|
|
Change like below and try it.
|
 |
 |
|
|
subject: Struts 2 - wrong method executed
|
|
|