i want to create a mappings for a spring view controller:
this works:
but this does not work:Code:<b:property name="mappings"> <b:props> <b:prop key="/index.do">indexSpringController</b:prop> <b:prop key="/index.htm">indexSpringController</b:prop> <b:prop key="/index.html">indexSpringController</b:prop> </b:props> </b:property>
are the endings *.do *.html *.htm predefined?Code:<b:property name="mappings"> <b:props> <b:prop key="/index.pref">indexSpringController</b:prop> </b:props> </b:property>


Reply With Quote
