The issue was that doing mvn package was not copying my struts.xml file into the app war in the target directory hence all the action i added were not available in the app.
basically a misunderstanding between maven and I. Do i have to do mvn integration:test to get a full rebuild? appfused wrote: > > I keep getting the following message when i try to access various links on > the page i created after deploying the struts2 basic achetype. Any ideas > what i might be doing wrong? Any help appreciated even a hint would be > great. > My assumptions are that appfuse all my presentation layer can be > configured as .html files and that there is a default namespace available. > > The error message is > > There is no Action mapped for namespace / and action name summary. - > [unknown location] > > in the struts.xml, i have > > <action name="summary" class="groupAction" method="save"> > <result name="success">/WEB-INF/pages/summaryList.jsp</result> > <result name="input">/WEB-INF/pages/summarylList.jsp</result> > <result name="error">/WEB-INF/pages/mainMenu.jsp</result> > </action> > In the applicationContext.xml i have > > <bean id="groupAction" class="my.action.TheAction" scope="prototype"> > <property name="userManager" ref="userManager"/> > <property name="roleManager" ref="roleManager"/> > </bean> > -- View this message in context: http://www.nabble.com/Finding-Mapped-Actions-tf3492185s2369.html#a9766837 Sent from the AppFuse - User mailing list archive at Nabble.com. --------------------------------------------------------------------- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]
