Spring 4 + Spring存储库+ hibernate 5:错误创建java配置

时间:2017-07-03 16:34:02

标签: java spring hibernate repository spring-data-jpa

我有春季4 app,我想使用spring存储库。我试过包含spring jpa_hibernate

compile 'org.springframework.data:spring-data-jpa:1.11.4.RELEASE'
compile group: 'org.hibernate', name: 'hibernate-core', version: '5.0.5.Final'

并创建类似oficial spring doc的配置:

@Configuration
@ComponentScan("my.domain")
@EnableJpaRepositories("my.domain")
@EnableTransactionManagement
public class ApplicationConfiguration {

    @Bean
    public Config getConfig() {
        return ConfigLoader.load();
    }

    @Bean
    @Autowired
    public DataSource getDatasource(Config config) throws Exception {
        Properties props = new Properties();
        Config dbConfig = config.getConfig("db.config");
        dbConfig.entrySet().forEach(entry -> props.put(entry.getKey(), entry.getValue().unwrapped()));
        return new DataSourceFactory().createDataSource(props);
    }

    @Bean
    @Autowired
    public NamedParameterJdbcTemplate getJdbcTemplate(DataSource datasource) {
        return new NamedParameterJdbcTemplate(datasource);
    }

    @Bean
    @Autowired
    public PlatformTransactionManager getTransactionManager(DataSource datasource) {
        return new DataSourceTransactionManager(datasource);
    }

    @Bean
    @Autowired
    public EntityManagerFactory entityManagerFactory(DataSource datasource) {

        HibernateJpaVendorAdapter vendorAdapter = new HibernateJpaVendorAdapter();
        vendorAdapter.setGenerateDdl(true);

        LocalContainerEntityManagerFactoryBean factory = new LocalContainerEntityManagerFactoryBean();
        factory.setJpaVendorAdapter(vendorAdapter);
        factory.setDataSource(datasource);
        factory.afterPropertiesSet();
        return factory.getObject();
    }

    @Bean
    @Autowired
    public PlatformTransactionManager transactionManager(DataSource datasource) {

        JpaTransactionManager txManager = new JpaTransactionManager();
        txManager.setEntityManagerFactory(entityManagerFactory(datasource));
        return txManager;
    }
}

但是在尝试运行app时出现错误:

org.springframework.beans.factory.BeanCreationException: Error creating bean with name 'entityManagerFactory' defined in my.ApplicationConfiguration: 
Bean instantiation via factory method failed; nested exception is org.springframework.beans.BeanInstantiationException: Failed to instantiate 
[javax.persistence.EntityManagerFactory]: Factory method 'entityManagerFactory' threw exception; nested exception is java.lang.IllegalStateException: 
Failed to determine Hibernate PersistenceProvider

我在springboot和configure in file中使用了存储库,但是我没有找到java config spring的实际示例(不能仅启动简单的核心应用程序)

1 个答案:

答案 0 :(得分:1)

当您使用最新的Spring Data版本时,请升级到最新的Hibernate版本:

compile group: 'org.hibernate', name: 'hibernate-core', version: '5.2.10.Final'

Spring需要hibernate的EntityManagerFactory实现,该实现主要由单独的jar配置,现在已弃用,因此您只需要单hibernate-core个依赖。

还要考虑使用以下配置:

@Configuration
@ComponentScan("my.domain")
@EnableJpaRepositories("my.domain")
@EnableTransactionManagement
public class ApplicationConfiguration {

    @Bean
    public Config getConfig() {
        return ConfigLoader.load();
    }

    @Bean
    public DataSource getDatasource(Config config) throws Exception {
        Properties props = new Properties();
        Config dbConfig = config.getConfig("db.config");
        dbConfig.entrySet().forEach(entry -> props.put(entry.getKey(), entry.getValue().unwrapped()));
        return new DataSourceFactory().createDataSource(props);
    }

    @Bean
    public NamedParameterJdbcTemplate getJdbcTemplate(DataSource datasource) {
        return new NamedParameterJdbcTemplate(datasource);
    }

    @Bean
    @Autowired
    public PlatformTransactionManager getTransactionManager(DataSource datasource) {
        return new DataSourceTransactionManager(datasource);
    }

    @Bean
    public LocalContainerEntityManagerFactoryBean entityManagerFactory() {

        HibernateJpaVendorAdapter vendorAdapter = new HibernateJpaVendorAdapter();
        vendorAdapter.setGenerateDdl(true);

        LocalContainerEntityManagerFactoryBean factory = new LocalContainerEntityManagerFactoryBean();
        factory.setJpaVendorAdapter(vendorAdapter);
        factory.setDataSource(dataSource());
        factory.setPackagesToScan("my.domain");

        return factory;
    }

    @Bean
    public PlatformTransactionManager transactionManager(EntityManagerFactory entityManagerFactory) {
        JpaTransactionManager txManager = new JpaTransactionManager();
        txManager.setEntityManagerFactory(entityManagerFactory);

        return txManager;
    }

}

您正在参考旧的Spring数据文档,当前版本为available here