web.xml
<filter>
<filter-name>RequestContextFilter</filter-name>
<filter-class>
org.springframework.web.filter.RequestContextFilter
</filter-class>
</filter>
<filter-mapping>
<filter-name>RequestContextFilter</filter-name>
<url-pattern>/*</url-pattern>
<dispatcher>INCLUDE</dispatcher>
<dispatcher>REQUEST</dispatcher>
</filter-mapping>
applicationContext.xml
<bean id=”person” class=”de.allianz.jsf.beans.PersonBean”
lazy-init=”true” scope=”session”>
<aop:scoped-proxy />
<property name=”vorname” value=”default” />
</bean>




