I'm currently migrating my software from plain JSF to a combination of JSF with Spring (so I'm not very familiar with spring yet). All works fine except one thing that I do not get to work. In JSF ther is a possibility to inject request parameters into beans with a managed property in the faces-config.xml:
Is there a way to do this in spring or is there another way to pass a parameter to a spring bean (ServletFilter / Listener or something like that).HTML Code:<managed-property> <property-name>propertyName</property-name> <value>#{param.paramName}</value> </managed-property>
Thank you for any suggestions...


Reply With Quote