EntityManager is not thread-safe by definition.
Servlets specs says that in non-distributed environment and without implementing SingleThreadModel, there is only one servlet instance per definition.
Therefore, in Java EE when you inject an EntityManager through the @PersistenceContext into Servlet’s field – it’s not thread safe:
public class MyServlet extends HttpServlet {
// Not thread-safe, should be using EMF instead.
@PersistenceContext
private EntityManager em;
}
-
Is this correct to say that even though the default scope of Spring beans is singleton, the
EntityManageris thread-safe as the Spring usesThreadLocalto bind its transaction andEntityManagerto it? -
Is the above Servlets example still valid in Spring? Is it still not thread-safe?
-
Does the
ThreadLocalapproach works only for Spring managed beans and plain servlet is not one of those? -
As far as I remember, it’s the container responsibility to inject the
EntityManager. In Glassfish Java EE implementation, it was the application server who discovers the@PersistenceContextas injection point.
How does it look like in Spring? Is the Spring Framework responsible for discovering those annotations or it’s responsibility of the JPA implementor?
Question 2, 3, and 4 — Spring does not pay attention to any class that is not a Spring Bean. Therefor Spring does not pay attention to you
MyServletclass.Therefore the answer for
For Question 1). It works this way, so the usage of an Spring Injected Entity Manager is effective thread save.