Is there a formal way to introduce an existing application to Roo? I have a web app originally created via maven-archetype-webapp. I would like to resurrect it using Roo but I find that I need to manually create various spring artifacts as I attempt to
HTML Code:
roo> install
. For example, attempting to
Code:
roo> install web flow
I see
Code:
roo> install web flow                                               
Created SRC_MAIN_RESOURCES/META-INF/spring/applicationContext-webflow.xml
Managed SRC_MAIN_RESOURCES/META-INF/spring/applicationContext-webflow.xml
Created SRC_MAIN_WEBAPP/WEB-INF/foo-app-servlet.xml
Created SRC_MAIN_WEBAPP/WEB-INF/urlrewrite.xml
Created SRC_MAIN_WEBAPP/WEB-INF/jsp
Created SRC_MAIN_WEBAPP/WEB-INF/jsp/index.jsp
Managed SRC_MAIN_WEBAPP/WEB-INF/web.xml
Undo manage SRC_MAIN_WEBAPP/WEB-INF/web.xml
Undo create SRC_MAIN_WEBAPP/WEB-INF/jsp/index.jsp
Undo create SRC_MAIN_WEBAPP/WEB-INF/jsp
Undo create SRC_MAIN_WEBAPP/WEB-INF/urlrewrite.xml
Undo create SRC_MAIN_WEBAPP/WEB-INF/foo-app-servlet.xml
Undo manage SRC_MAIN_RESOURCES/META-INF/spring/applicationContext-webflow.xml
Undo create SRC_MAIN_RESOURCES/META-INF/spring/applicationContext-webflow.xml
Unable to obtain required element '/web-app/filter-mapping[filter-name='httpMethodFilter']' from element '[web-app: null]'
This is leading me to believe that I'm doing something incorrectly - shouldn't Roo's install commands be creating these for me? Any ideas? Thanks