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 don't have actionPackages in my web.xml. See attahced. > > > > mraible wrote: >> >> If you remove the "actionPackages" parameter from web.xml (on the >> struts filter), does the problem still happen? >> >> Matt >> >> On 3/30/07, appfused <[EMAIL PROTECTED]> 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#a9753052 >>> Sent from the AppFuse - User mailing list archive at Nabble.com. >>> >>> --------------------------------------------------------------------- >>> To unsubscribe, e-mail: [EMAIL PROTECTED] >>> For additional commands, e-mail: [EMAIL PROTECTED] >>> >>> >> >> >> -- >> http://raibledesigns.com >> >> --------------------------------------------------------------------- >> To unsubscribe, e-mail: [EMAIL PROTECTED] >> For additional commands, e-mail: [EMAIL PROTECTED] >> >> >> > http://www.nabble.com/file/7578/web.xml web.xml > -- View this message in context: http://www.nabble.com/Finding-Mapped-Actions-tf3492185s2369.html#a9766856 Sent from the AppFuse - User mailing list archive at Nabble.com. --------------------------------------------------------------------- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]
