Spring does not pick up asynchronous task configuration when @Async is used within a lifecycle managed bean. Although documentation in chapter 26.5.2 hints: "@Async can not be used in conjunction...
Type: Posts; User: birnbuazn; Keyword(s):
Spring does not pick up asynchronous task configuration when @Async is used within a lifecycle managed bean. Although documentation in chapter 26.5.2 hints: "@Async can not be used in conjunction...
Hi,
I was just wondering why Spring MVC does not support exporting Jasper reports into RTF out of the box? Does anybody know what I should be aware of when writing my own JasperReportsRtfView...
Hi,
Just in case it might help anybody - Had the same issue with Tomcat giving me a 406 and DSchauer's post pointed me into the right direction. Jackson couldn't convert my response into JSON...
Just as a follow up, if anybody has the same problem.
I ended up writing a custom RememberMeFilter and for the form based login used a AuthenticationSuccessHandler, which both delegate to a custom...
Thanks guys.
I'll probably go for a custom RemembeMeFilter implementation and will extend the UsernamePasswordAuthenticationFilter as well, so that both filters call the same...
Hi,
In my app I read a custom cookie (containing user settings) after each successful login event. I'm currently using a custom AuthenticationSuccessHandler for this, which works fine....
Self reply, just in case it might help anybody else:
yep, you have to configure the JPA2.0 entity manager factory to use Spring's Validation Factory:
<bean
id="entityManagerFactory"
...
Hi,
I've annotated one of my entity classes with a custom JSR 303 backed validator. I'm using the Hibernate 4.1.0 Validator as JSR provider.
Unfortunately, the validator is called twice....
Hi Luke,
Testing the UserDetailsService is one thing. But how to test the EL in the @PreAuthorize annotation? I'm having quite complicated domain object driven security constraints expressed in...
Hi,
I am using Spring MVC coupled with FreeMarker as viewing technology in a current web project and was looking for an easy way to decorate all of my content pages with a default layout.
I had...