Hola segui los pasos como en los videos y me sale este error.
may 09, 2023 10:21:34 P.�M. org.hibernate.jpa.boot.internal.PersistenceXmlParser doResolve INFO: HHH000318: Could not find any META-INF/persistence.xml file in the classpath Exception in thread "main" javax.persistence.PersistenceException: No Persistence provider for EntityManager named tienda at javax.persistence.Persistence.createEntityManagerFactory(Persistence.java:85) at javax.persistence.Persistence.createEntityManagerFactory(Persistence.java:54) at com.latam.alura.tienda.prueba.RegistroDeProducto.main(RegistroDeProducto.java:19) Esta es mi linea de codigo alguna idea?
`package com.latam.alura.tienda.prueba;
import java.math.BigDecimal;
import javax.persistence.EntityManager; import javax.persistence.EntityManagerFactory; import javax.persistence.Persistence;
import com.latam.alura.tienda.modelo.Producto;
public class RegistroDeProducto {
public static void main(String[] args) {
Producto celular =new Producto();
celular.setNombre("Samsung");
celular.setDescripcion("telefono usado");
celular.setPrecio(new BigDecimal("1000"));
EntityManagerFactory factory = Persistence.createEntityManagerFactory("tienda");
EntityManager em= factory.createEntityManager();
em.persist(celular);
}
`