Hi,
Try adding <context:annotation-config/> to your application context.
Also in your UserBean class, add a getter and setter method for userService.
Hope that does the trick for you.
Type: Posts; User: charliefryer; Keyword(s):
Hi,
Try adding <context:annotation-config/> to your application context.
Also in your UserBean class, add a getter and setter method for userService.
Hope that does the trick for you.
Thanks for that rwinch,
I have omitted css and js from the security filter and the authorisation is working properly.
This allows me to compress all css and js files which is great.
Thanks...
Hi there,
I have enabled compression on our sun web server 7 on HTTPS.
Static compression is enabled on all css and js files.
Dynamic compression is enabled on jsps and servlets.
Before...
I had the same issue a while ago.
Set the cacheSeconds property in the AnnotationMethodHandlerAdapter in your web application context file.
ie include the following bean:
<bean...
I had the same issue a while ago.
Set the cacheSeconds property in the AnnotationMethodHandlerAdapter in your web application context file.
ie include the following bean:
<bean...
Hi, I have had a similar problem.
I believe you cannot annotate a method unless it is externally visible.
As you are extending AbstractController you are overriding handleRequestInternal (not...