From a Spring MVC @Controller, I need to be able to call a JSF @ManagedBean.
The problem seems to be that the @ManagedBean is not visible in the Spring ApplicationContext. Is there any way to do...
Type: Posts; User: morsor; Keyword(s):
From a Spring MVC @Controller, I need to be able to call a JSF @ManagedBean.
The problem seems to be that the @ManagedBean is not visible in the Spring ApplicationContext. Is there any way to do...
OK - Thanks! The intent was exactly as you said - to share among several (if not all) @Controllers. I'll look into HandlerInterceptor.
I have 'normal' @Controllers with @RequestMappings that are working just fine - including the bindings to @ModelAttribute backing beans.
However, I also have other @Controllers which only contain...
The 'optional attribute' makes sense - now that I see the method :-)
Ahh - I was using 2.0.0.M7.
As soon as I upgraded to 2.0.0.RELEASE, the method appeared and all is well.
Thanks!
According to the documentation, the method MessageStore.getMessageCount() exists - but it seems to be missing from the code.
In the documentation, it is described as an 'optional attribute'. What...
Hi Nisha,
I came to the same conclusion - the ExceptionTranslationFilter needs to be bean-configured and wired in a FilterChainProxy.
I still don't quite understand why referring to the...
A certificate login using an applet has been implemented using Http403ForbiddenEntryPoint and a customized AbstractPreAuthenticatedProcessingFilter and works as expected when using the login page.
...