Posts by Giullia Cardoso Telles • 11 points
1 post
-
1
votes1
answer51
viewsQ: How to connect a Query to a Container?
TypedQuery<Empteste> minhaLista = em.createQuery("Select d from Empteste", Empteste.class); List<Empteste> results = minhaLista.getResultList(); I want that my list result to appear in…