Vaadin JPAContainer JDBC Connection Usage
问题 Once one JPAContainer is created like JPAContainer users = JPAContainerFactory.make(User.class, "persistenceUnitName"); Now I suppose that the "users" container will use one EntityManager which in turn uses one JDBC connection from the connection pool. That resource utilization (jdbc Connection attached to EntityManager attached to JPAContainer) happens during the lifetime of the httprequest or the usage of the entityManager/connection has another lifespan ? Can you please help me understand