在 Spring Boot 中配置数据库

Posted

技术标签:

【中文标题】在 Spring Boot 中配置数据库【英文标题】:Configuring Database in Spring Boot 【发布时间】:2020-10-04 19:47:57 【问题描述】:

我正在尝试在 Spring Boot 中配置 mysql 数据库。但我似乎不能这样做。我是新手,所以我不知道自己在做什么。我试过搜索。请帮助我缺少什么:

应用程序属性:

  ## Spring DATASOURCE (DataSourceAutoConfiguration & DataSourceProperties)
     spring.datasource.driver-class-name=com.mysql.jdbc.Driver
     spring.jpa.show-sql=true
  spring.datasource.url = jdbc:mysql://localhost:3306/users_database? 
   useSSL=false
 spring.datasource.username = sa
 spring.datasource.password = root


 ## Hibernate Properties
 # The SQL dialect makes Hibernate generate better SQL for the chosen database
 spring.jpa.properties.hibernate.dialect = org.hibernate.dialect.MySQL5InnoDBDialect

 # Hibernate ddl auto (create, create-drop, validate, update)
 spring.jpa.hibernate.ddl-auto = update

 info.app.name=Spring Boot - RestTemplate CRUD Rest Client Example
 info.app.description=Spring Boot - RestTemplate CRUD Rest Client Example
 info.app.version=1.0.0

 server.servlet.context-path=/springboot-crud-rest

这里我的用户名和密码是正确的。如何配置我的网址?

另外,我还在 pom.xml 文件中添加了所需的依赖项。

<?xml version="1.0" encoding="UTF-8"?>

http://maven.apache.org/xsd/maven-4.0.0.xsd"> 4.0.0

<groupId>net.guides.springboot2</groupId>
<artifactId>springboot2-jpa-crud-example</artifactId>
<version>0.0.1-SNAPSHOT</version>
<packaging>jar</packaging>

<name>springboot2-jpa-crud-example</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-data-jpa</artifactId>
    </dependency>
    <dependency>
        <groupId>org.springframework.boot</groupId>
        <artifactId>spring-boot-starter-web</artifactId>
    </dependency>

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

    <dependency>
        <groupId>org.springframework.boot</groupId>
        <artifactId>spring-boot-devtools</artifactId>
        <scope>runtime</scope>
    </dependency>
    <dependency>
       <groupId>mysql</groupId>
       <artifactId>mysql-connector-java</artifactId>
       <scope>runtime</scope>
   </dependency>
    <dependency>
        <groupId>com.h2database</groupId>
        <artifactId>h2</artifactId>
        <scope>runtime</scope>
    </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>

错误:

请帮助我错过了什么?

【问题讨论】:

添加 spring.datasource.driver-class-name=com.mysql.jdbc.Driver 请检查我更新的问题@codeogeek 我已经在我的文件中添加了这些 您遇到什么错误?粘贴错误而不是图像,它在右侧被裁剪,所以我看不到所有信息 【参考方案1】:

我相信您错过了 spring.datasource.driverClassNamespring.datasource.dataSourceClassName 的属性。您需要将其设置为 Hikari 的实现。检查驱动程序是否存在于您的类路径中也是值得的。我没有在您的 Maven 依赖项列表中看到它。

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

【讨论】:

我在 application.properties 中添加了这些属性。它仍然给我错误。让我更新我的问题以附上错误图片。 我已经添加了依赖,但错误仍然存​​在。请检查我更新的问题 图片中的stacktrace与主帖中提供的stacktrace完全不同。 堆栈跟踪显示错误启动 tomcat 上下文。你能帮我吗? @杰森

以上是关于在 Spring Boot 中配置数据库的主要内容,如果未能解决你的问题,请参考以下文章

如何在 Spring Boot 配置中显式传递数据库名称?

Spring-Boot 仅在一个配置文件中执行 data.sql

如何在 Spring Boot 中配置数据库连接运行时?

Spring Boot 多环境配置

如果我们在Spring Boot中以编程方式配置数据源,spring boot数据源属性是否有效

Spring Boot JDBC derby 在内存中的配置问题