java - 如何在 Spring 4 上参数化数据源属性?

标签 java spring spring-mvc spring-data

我正在使用 Spring 4.16。我想参数化我的持久性数据。这是我现在的配置:

@Configuration
@EnableTransactionManagement
public class PersistenceConfiguration {

    @Bean
    public LocalContainerEntityManagerFactoryBean entityManagerFactory() {
        LocalContainerEntityManagerFactoryBean entityManager = new LocalContainerEntityManagerFactoryBean();
        entityManager.setDataSource(this.dataSource());
        entityManager.setPackagesToScan(new String[] {"com.example.movies.domain"});
        JpaVendorAdapter vendorAdapter = new HibernateJpaVendorAdapter();
        entityManager.setJpaVendorAdapter(vendorAdapter);
        entityManager.setJpaProperties(this.properties());
        return entityManager;
    }

@Bean
public DataSource dataSource() {
    DriverManagerDataSource dataSource = new DriverManagerDataSource();
    dataSource.setDriverClassName("com.mysql.jdbc.Driver");
    dataSource.setUrl("jdbc:mysql://localhost:3306/sarasa_db");
    dataSource.setUsername("root");
    dataSource.setPassword("mypassword");
    return dataSource;
}

    @Bean
    public PlatformTransactionManager transactionManager(EntityManagerFactory emf) {
        JpaTransactionManager transactionManager = new JpaTransactionManager();
        transactionManager.setEntityManagerFactory(emf);
        return transactionManager;
    }

    @Bean
    public PersistenceExceptionTranslationPostProcessor exceptionTranslation() {
        return new PersistenceExceptionTranslationPostProcessor();
    }

    private Properties properties() {
        Properties properties = new Properties();
        properties.setProperty("hibernate.hbm2ddl.auto", "update");
        properties.setProperty("hibernate.dialect", "org.hibernate.dialect.MySQL5Dialect");
        properties.setProperty("hibernate.show_sql", "false");
        return properties;
    }

}

我想在我的 application.properties 上参数化所有我能做的事情。首先,我想放入数据源属性(所以正如我所读,spring 可能会自动构建我的数据源,但显然这只是使用 JdbcTemplate...):

spring.datasource.driverClassName=com.mysql.jdbc.Driver
spring.datasource.url=jdbc:mysql://localhost:3306/sarasa_db
spring.datasource.username=root
spring.datasource.password=mypassword

并且,如果可能的话,所有属性的属性,我在文档中找不到任何内容

你知道我该怎么做吗?

<小时/>

编辑

这是我的 DAO 实现

@Configuration
@Import(PersistenceConfiguration.class)
public class DAOConfiguration {

    @PersistenceContext
    private EntityManager entityManager;

    @Bean
    public ClientDAO clientDAO() {
        SimpleJpaRepository<Client, String> support = this.getSimpleJpaRepository(Client.class);
        return new MySQLClientDAO(support);
    }

    @Bean
    @Scope(BeanDefinition.SCOPE_PROTOTYPE)
    @Description("Hibernate repository helper")
    protected <T> SimpleJpaRepository<T, String> getSimpleJpaRepository(Class<T> domainClass) {
        return new SimpleJpaRepository<T, String>(domainClass, this.entityManager);
    }

}

最佳答案

你可以这样做:

首先在 Spring 配置中的某个位置定义 PropertySourcesPlaceholderConfigurer bean:

@Bean
public static PropertySourcesPlaceholderConfigurer propertyPlaceholderConfigurer() {
    PropertySourcesPlaceholderConfigurer ppc = new PropertySourcesPlaceholderConfigurer();
    ppc.setLocation(new ClassPathResource("application.properties"));
    return ppc;
}

此配置假设 application.properties 文件放置在类路径的根目录下。

设置属性占位符配置程序后,您可以访问数据库配置类中的属性,如下所示:

@Configuration
@EnableTransactionManagement
public class PersistenceConfiguration {

    @Value("${spring.datasource.url}")
    private String jdbcUrl;
    // ...

    @Bean
    public DataSource dataSource() {
       DriverManagerDataSource dataSource = new DriverManagerDataSource();
       dataSource.setUrl(jdbcUrl);
       // ...
    }
}

如果您想要一种简单的方法来参数化所有属性,您应该看看 Spring Boot 。它使用 application.properties 文件自动创建具有这些属性和许多其他内容的数据源。这可能是您在问题中提到的自动数据源创建。

关于java - 如何在 Spring 4 上参数化数据源属性?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/30173848/

相关文章:

spring - 原始类型的属性不允许使用“lateinit”修饰符 - Kotlin

java - Spring Security,针对 REST 请求禁用 formLogin()

java - 使用默认模板的 spring mvc 出现 404 错误

android - 使用 AndroidAnnotations (Spring Rest) 处理超时

Java 操作监听器不适用于数组

java - 如何在核心java应用程序中维护 session 超时?

java - 使用 Apache Thrift 和 TServlet 执行服务多路复用

java - 如何使用端口号来保护 Web 请求

java - 控制台中显示奇怪的输出,尝试通过站点中的 java 登录

java - Log4j 2 JSON 配置