struts2 conventions plugin not working properly
问题 I was trying to run the application with convention plugin Struts2. The application was fine with struts.xml configured like this: <struts> <package name="struts2demo" extends="struts-default"> <action name="hey" class="action.CountryAction" method="get"> <result name="success">/index.jsp</result> </action> <action name="add" class="action.CountryAction" method="add"> <result type="redirect" name="success">hey</result> </action> <!-- Add your actions here --> </package> </struts> now I