I've created a spring roo project using 1.0.0.RC1 but I'm having trouble with the urlrewrite rules. The rules are the standard generated rules:
with the above rules and the following automatically created controllerCode:<rule> <from>/app/**</from> <to last="true">/app/$1</to> </rule> <rule> <from>/**</from> <to>/app/$1</to> </rule> <outbound-rule> <from>/app/**</from> <to>/$1</to> </outbound-rule>
I get the following error:Code:@RooWebScaffold(automaticallyMaintainView = false, formBackingObject = Category.class) @RequestMapping("/category/**") @Controller public class CategoryController {}
DispatcherServlet with name 'prtracker' determining Last-Modified value for [/prtracker/app/wodcategory/form]
No handler found in getLastModified
DispatcherServlet with name 'prtracker' processing GET request for [/prtracker/app/category/form]
No mapping found for HTTP request with URI [/prtracker/app/category/form] in DispatcherServlet with name 'prtracker'
web.xml has:
Any ideas why this is occuring?Code:<servlet-mapping> <servlet-name>prtracker</servlet-name> <url-pattern>/app/*</url-pattern> </servlet-mapping>


Reply With Quote