Given that the namespace tags are domain-specific, I'd rather not overload the mapping element to allow mappings to other handler objects.
I would recommend that you just break the mapping of your controller(s) into it's own separate HandlerMapping and take advantage of the Ordered interface. For example:
Code:
<flex:message-broker>
<flex:secured />
</flex:message-broker>
<bean class="org.springframework.web.servlet.handler.Sim pleUrlHandlerMapping">
<property name="order" value="0"/>
<property name="mappings">
<value>
/config.properties=configPropertyController
</value>
</property>
</bean>
Jeremy Grelle
Staff Engineer, Web Products Team
SpringSource