Struts 2 action method and struts.convention.result.path not working
问题 I have problem with Struts2 action method and struts.convention.result.path Here is my struts.xml <struts> <constant name="struts.action.extension" value="" /> <constant name="struts.action.excludePattern" value="/.*\.(html|jsp),/static/.*"/> <constant name="struts.convention.result.path" value="/WEB-INF/pages/" /> <package name="user" namespace="/user" extends="struts-default"> <action name="login" class="loginAction" method="login"> <result name="success">login.jsp</result> </action> <