如何在Spring中通过bean而不是application.properties来配置DataSource?

时间:2016-10-30 14:46:36

标签: spring postgresql spring-boot spring-jdbc

我使用STS创建了新的Spring Starter项目。

在pom文件中我添加了:

<dependency>
    <groupId>org.postgresql</groupId>
    <artifactId>postgresql</artifactId>
    <scope>runtime</scope>
</dependency>
<dependency>
    <groupId>org.springframework.boot</groupId>
       <artifactId>spring-boot-starter-jdbc</artifactId>
</dependency>

然后我创建了beans.xml文件:

<?xml version="1.0" encoding="UTF-8"?>
<beans xmlns="http://www.springframework.org/schema/beans"
    xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
    xsi:schemaLocation="http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans.xsd">

    <bean id="databaseService" class="com.pckg.DatabaseService">
        <property name="dataSource" ref="dataSource"/>
    </bean>

    <bean id="dataSource" class="org.apache.tomcat.jdbc.pool.DataSource">
        <property name="driverClassName"    value="org.postgresql.Driver"/>
        <property name="username"           value="postgres"/>
        <property name="password"           value="password"/>
        <property name="url"                value="jdbc:postgresql://localhost:5432/postgres"/>
    </bean>

     <bean id="transactionManager" class="org.springframework.jdbc.datasource.DataSourceTransactionManager">
        <property name="dataSource" ref="dataSource"/>
        <qualifier value="transactionManager" />
    </bean>
</beans>

并添加到我几乎空的web.xml文件中:

<context-param>
    <param-name>contextConfigLocation</param-name>
    <param-value>/WEB-INF/beans.xml</param-value>
</context-param>

我的DatabaseService类如下所示:

import org.apache.tomcat.jdbc.pool.DataSource;
...
@Service("databaseService")
@Transactional
public class DatabaseService {
  private NamedParameterJdbcTemplate jdbcTemplate;

  @Autowired
  public void setDataSource(DataSource dataSource) {
    if (jdbcTemplate == null)
      jdbcTemplate = new NamedParameterJdbcTemplate(dataSource);
  }

  public DatabaseService(DataSource dataSource){
    this.setDataSource(dataSource);
  }  

  public DatabaseService(){    
  }

  public String getData(){
        //jdbcTemplate.query("SELECT 1",.....);
        return null;
  }
}

我想让这个配置工作。由于某些原因,这些豆子没有被看见,我无法启动这个应用程序。 我有一个例外:

nested exception is org.springframework.beans.BeanInstantiationException: Failed to instantiate [org.apache.tomcat.jdbc.pool.DataSource]: Factory method 'dataSource' threw exception; nested exception is org.springframework.boot.autoconfigure.jdbc.DataSourceProperties$DataSourceBeanCreationException: Cannot determine embedded database driver class for database type NONE.

那是因为application.properties不包含spring.datasource.driver-class-name=...条目以及我在beans.xml文件中包含的其他条目

当我输入该数据并且应用程序启动时,beans.xml中提供的其他信息将被忽略,我相信这些bean都没有被执行&#39;。我希望transactionManager参与我的SQL查询,目前它是不可能的。

1 个答案:

答案 0 :(得分:0)

第一个问题:为什么在使用spring-boot时创建XML文件?如果您不打算使用它,并自己引导容器:只需替换依赖项:

删除:

<dependency>
    <groupId>org.springframework.boot</groupId>
       <artifactId>spring-boot-starter-jdbc</artifactId>
</dependency>

添加:

<dependency>
    <groupId>org.springframework</groupId>
    <artifactId>spring-jdbc</artifactId>
    <version>4.3.3.RELEASE</version>
</dependency>

并检查tomcat-jdbc是否在您的类路径中:

<dependency>
    <groupId>org.apache.tomcat</groupId>
    <artifactId>tomcat-jdbc</artifactId>
    <version>8.5.6</version>
</dependency>

否则,如果要覆盖与spring-boot相关的异常the documentation suggests 以添加到application.properties中 spring.datasource.continue-on-error=false#初始化数据库时,如果发生错误,请不要停止。

但我无法向你保证,每一件事都会奏效。为了安全起见,从项目中删除任何与spring-boot相关的依赖项并继续使用简单的spring,或者忽略基于xml的配置,转而使用Spring-boot“magic”以使用非常好的默认值来引导容器。