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:
Code:
@RequestMapping(value={"/{requestMapping}"})
the flows sre defined more specific, e.g.:
Code:
<prop key="/balance.htm">flowController</prop>
I get 404 errors when i browse to .../balance.htm. how can i give the flowcontroller a higher priority over the multiactioncontroller?