Я хочу работать с моей базой данных, используя entiies и jpa.
Когда я просто пытаюсь создать бин в SpringConfig.java :
@Bean
@Singleton
public EntityManager getEntityManager(){
return Persistence.createEntityManagerFactory("collection").createEntityManager();
}
У меня есть:
Caused by: javax.persistence.PersistenceException: No Persistence provider for EntityManager named collection: No META-INF/persistence.xml was found in classpath.
Но имя " collection " такое же, как в единица постоянства имя
my persistence.xml находится в ресурсах ( src / main / resources ) инастроен как jpa при весенней загрузке
ОБНОВЛЕНИЕ :
Когда я пытаюсь поместить файл persistence.xml в ресурсы / META-INF / у меня естьдругое исключение:
Caused by: javax.persistence.PersistenceException: No Persistence provider for EntityManager named collection: Provider named org.hibernate.jpa.HibernatePersistenceProvider threw unexpected exception at create EntityManagerFactory:
java.lang.NoSuchMethodError