Tag: hibernate 5.x

在Hibernate 5中如何自动连接SessionFactory?

我尝试autowire SessionFactory,但得到这个错误: APPLICATION FAILED TO START *************************** Description: Field bookRepository in com.test.app.BookService required a bean named 'entityManagerFactory' that could not be found. 在这里我自动装配SessionFactory: @Service class TestClass{ @Autowired lateinit var sessionFactory: SessionFactory …… } 这是我的配置类: @Configuration class SpringConfig { @Bean fun sessionFactory(emf: EntityManagerFactory): HibernateJpaSessionFactoryBean { val fact = HibernateJpaSessionFactoryBean() fact.entityManagerFactory = emf return fact } } […]