✅ The verified answer to this question is available below. Our community-reviewed solutions help you understand the material better.
public class PersonaDAO {
private EntityManager em;
public void guardar(Persona p) {
em.persist(p);
}
}
¿Qué falta para que la operación persista de forma segura en RESOURCE_LOCAL? (elige la mejor respuesta)