Hi all,
I have a web application configured with Spring 3.0 + JPA. The services are annotated for transactions using a custom annotation. For example, a transactional method could be annotated as...
Type: Posts; User: Ciaccia; Keyword(s):
Hi all,
I have a web application configured with Spring 3.0 + JPA. The services are annotated for transactions using a custom annotation. For example, a transactional method could be annotated as...
Hi all,
I found a way to fix this. The <tx:annotation-driven /> tag defines an "autoproxy" before instantiating the transaction interceptors. This can be achieved in XML by defining a bean...
Hi all, I have a Spring + JPA setup that works fine. The transactional services use annotation metadata as following:
@Service
public class MyServiceImpl implements MyService {
@Override...
Thanks again, I was not aware of the interceptors tag in the mvc namespace. Now everything is cleaner...
Could you please tell me in which case the "addAttribute" method in the RedirectAttributes...
Hi Rossen, Thank you for your answer.
In my dispatcher.xml I had both <mvc:annotation-driven/> and a DefaultAnnotationHandlerMapping, since I needed a localeChangeInterceptor.
Now I have...
Hi all,
Yesterday I downloaded the new Spring 3.1RC to test the just introduced support for flash scoped variables in Spring MVC. Unfortunately I could not make it working...
I have a HTML form...