I am using spring web flow 2.4 with Spring faces (JSF myfaces 2.1.9)
I have declared a bean in my web-mvc.xml:
<bean id="myBean" class="..." scope="view"/>
and when referencing it in my facelet #{myBean.someProperty} I get the following error message:
java.lang.IllegalStateException: No Scope registered for scope 'view'
I get the same result when using "flow" scope, but using request or session scope works. I even remember having this working a while ago but now it seems like it isn't working.
Anyone know my problem, something with my configuration? Any help would be appreciated![]()


Reply With Quote
