PostgreSql失败的Spring Boot数据源自动配置

时间:2018-09-22 06:51:46

标签: java spring postgresql spring-boot datasource

我正在使用maven构建设置一个Springboot(版本2.0.4)项目以使用PostgreSQL数据库。我想利用Springboot的数据源自动配置功能,但这给了我以下错误:

Field dataSource in com.praveen.demo.MyController required a bean of type 'javax.sql.DataSource' that could not be found.
Bean method 'dataSource' not loaded because @ConditionalOnClass did not find required class 'org.springframework.jdbc.datasource.embedded.EmbeddedDatabaseType'
Bean method 'dataSource' not loaded because @ConditionalOnClass did not find required classes 'javax.transaction.TransactionManager', 'org.springframework.jdbc.datasource.embedded.EmbeddedDatabaseType'

在我的pom.xml中,我依赖于postgresql和HikariCP,如下所示:

<dependency>
    <groupId>org.postgresql</groupId>
    <artifactId>postgresql</artifactId>
</dependency>

<dependency>
    <groupId>com.zaxxer</groupId>
    <artifactId>HikariCP</artifactId>
</dependency>

我也在我的application.properties文件中

spring.datasource.url=jdbc:postgresql://localhost:5432/mydb?user=myself&password=mypassword

在具有@RestController批注的Java文件中,我正在按以下方式注入DataSource:

@Autowired
private DataSource dataSource;

我在下面进行以下跟踪:https://docs.spring.io/spring-boot/docs/current/reference/html/boot-features-sql.html 我不想使用JPA。我认为文章不建议您使用JPA进行自动配置。 我期望Spring Boot应该为应用程序自动配置数据源,因为我已经声明了依赖项并提供了数据库URL。仍然在启动应用程序时出现错误(如顶部所述)。

Edit-1:我在关注以下文章: https://docs.spring.io/spring-boot/docs/current/reference/html/boot-features-sql.html

编辑2:完整的POM:

<?xml version="1.0" encoding="UTF-8"?>
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
<modelVersion>4.0.0</modelVersion>

<groupId>com.praveen</groupId>
<artifactId>demo</artifactId>
<version>0.0.1-SNAPSHOT</version>
<packaging>jar</packaging>

<name>demo</name>
<description>Demo project for Spring Boot</description>

<parent>
    <groupId>org.springframework.boot</groupId>
    <artifactId>spring-boot-starter-parent</artifactId>
    <version>2.0.5.RELEASE</version>
    <relativePath/> <!-- lookup parent from repository -->
</parent>

<properties>
    <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
    <project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding>
    <java.version>1.8</java.version>
</properties>

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

    <dependency>
        <groupId>org.postgresql</groupId>
        <artifactId>postgresql</artifactId>
    </dependency>


    <dependency>
      <groupId>com.zaxxer</groupId>
        <artifactId>HikariCP</artifactId>
    </dependency>
    <dependency>
        <groupId>org.springframework.boot</groupId>
        <artifactId>spring-boot-starter-test</artifactId>
        <scope>test</scope>
    </dependency>
</dependencies>
<build>
    <plugins>
        <plugin>
            <groupId>org.springframework.boot</groupId>
            <artifactId>spring-boot-maven-plugin</artifactId>
        </plugin>
    </plugins>
</build>
</project>

尽管,我仍然对https://docs.spring.io/spring-boot/docs/current/reference/html/boot-features-sql.html中提供的文档感到困惑,并希望如果我明确声明对HikariCP和Postgresql的依赖性,则不需要使用JPA进行自动配置。现在关闭它。

1 个答案:

答案 0 :(得分:3)

如果您不想使用JPA,则可以使用pom。

为数据源定义@Bean,以在application.propoerties spring.datasource.type=com.zaxxer.hikari.HikariDataSource中配置或添加属性:

@Configuration
public class DbConfig {

    @Bean
    @ConfigurationProperties("spring.datasource")
    public HikariDataSource dataSource() {
        return DataSourceBuilder.create().type(HikariDataSource.class).build();
    }
}

还将您的属性更改为以下内容:

spring.datasource.url=jdbc:postgresql://localhost:5432/mydb
spring.datasource.username-myself
spring.datasource.password= mypassword

注意:JPA为您配置了所有内容,因此,如果不使用JPA,则需要通过介绍Hikari来配置DataSource。

根据参考文档29.1.2 Connection to a Production Database

  

如果您使用spring-boot-starter-jdbc或   spring-boot-starter-data-jpa“启动器”,您会自动获得一个   对HikariCP的依赖。

     

您可以完全绕过该算法并指定连接   通过设置spring.datasource.type属性使用的池。这是   如果您在Tomcat中运行应用程序,则尤其重要   容器,因为默认情况下提供了tomcat-jdbc。

     

[提示]始终可以手动配置其他连接池。   如果定义自己的DataSource bean,则自动配置不会   发生。