Czy menedżer podmiotu JPA powinien zostać zamknięty?

Mam poniższą metodę.

public Profile readUser(String email){
    EntityManager em = EMF.get().createEntityManager();
    return em.find(Profile.class, email);
}

Czy powyższe użycie menedżera encji jest w porządku? Lub Konieczne jest zamknięcie ich? Wszelkie sugestie proszę.

questionAnswers(1)

yourAnswerToTheQuestion