1
vote
Spring JPA Exception Translation
I do it only by putting the @Repository annotation on my DAO or Manager class that uses the EntityManager.
Make sure that you enabled component scanning:
<context:component-scan …
0
votes
Injecting EntityManager Vs. EntityManagerFactory
I found that setting the @Repository Spring annotation on our DAOs and having EntityManager managed by Spring and injected by @PersistenceContext annotation is the most convenient way to get everyt …
