public
class
EMTestServlet
extends
HttpServlet {
//This field injection is thread-safe
@PersistenceUnit
private
EntityManagerFactory emf;
protected
void
doGet(HttpServletRequest request,
HttpServletResponse response)
throws
ServletException, IOException {
EntityManager em = emf.createEntityManager();
//work with em
}
}