Hi,
I hav an application which has basically two controllers.
An @Contoller annotated POJO which acts as MultiActionController.
And a FlowController to handle all forms in my app.
I want that the flowcontrollers mappings have a higher priority than the mappings defined using @RequestMapping annotations.
I have this annotated mappingin my multication controller:
the flows sre defined more specific, e.g.:Code:@RequestMapping(value={"/{requestMapping}"})
I get 404 errors when i browse to .../balance.htm. how can i give the flowcontroller a higher priority over the multiactioncontroller?Code:<prop key="/balance.htm">flowController</prop>


Reply With Quote