【问题标题】:Spring Boot project can't see data for database connection, written in application.ymlSpring Boot项目看不到数据库连接的数据,写在application.yml中
【发布时间】:2020-01-30 15:35:19
【问题描述】:

我正在 IntelliJ IDEA Community IDE 中编写一个 Java 项目。本项目的技术栈:

  • 弹簧靴;
  • Spring 数据 JPA;
  • MySQL。

我在项目中有application.yml 文件来连接数据库,但是当我运行我的应用程序时,出现错误:

APPLICATION FAILED TO START

Description:

Failed to configure a DataSource: 'url' attribute is not specified and no embedded datasource could be configured.

Reason: Failed to determine a suitable driver class

我不知道为什么我的项目看不到我的 application.yml 文件,该文件位于项目中的 /src/main/resources/database 路径中。

有什么想法吗?

application.yml:

spring:
  jpa:
    database: mysql
    show-sql: true
    hibernate:
      ddl-auto: update
  datasource:
    driver-class-name: com.mysql.cj.jdbc.Driver
    url: jdbc:mysql://localhost:3306/map
    username: root
    password: abcd

pom.xml:

<?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>

    <parent>
        <groupId>org.springframework.boot</groupId>
        <artifactId>spring-boot-starter-parent</artifactId>
        <version>2.1.8.RELEASE</version>
        <relativePath/>
    </parent>

    <groupId>example.com</groupId>
    <artifactId>geo-informer</artifactId>
    <version>1.0</version>
    <name>Geo Informer</name>
    <description>
        The Spring Boot app, which makes interaction with the OpenStreetmap Nominatim API
        to work with geographic data and store it to the MySQL database
    </description>

    <properties>
        <java.version>1.8</java.version>
    </properties>

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

        <!-- Spring Data JPA -->
        <dependency>
            <groupId>org.springframework.boot</groupId>
            <artifactId>spring-boot-starter-data-jpa</artifactId>
        </dependency>

        <!-- MySQL Connector -->
        <dependency>
            <groupId>mysql</groupId>
            <artifactId>mysql-connector-java</artifactId>
            <scope>runtime</scope>
        </dependency>

        <!-- Lombok -->
        <dependency>
            <groupId>org.projectlombok</groupId>
            <artifactId>lombok</artifactId>
            <optional>true</optional>
        </dependency>
    </dependencies>

    <build>
        <plugins>
            <!-- Spring Boot Maven plugin -->
            <plugin>
                <groupId>org.springframework.boot</groupId>
                <artifactId>spring-boot-maven-plugin</artifactId>
            </plugin>
        </plugins>
    </build>

</project>

这个项目位于这里:

https://github.com/OlegSandro/geo-informer/tree/dev

【问题讨论】:

  • 它应该直接在资源目录中。
  • application.yml 必须在 src/main/resources 而不是子目录中。
  • @VinayPrajapati 谢谢!有用!问题描述不仅仅是它的决定:)
  • @M.Deinum 谢谢!你说的对!你帮了我

标签: java mysql spring-boot spring-data-jpa yaml


【解决方案1】:

由于application.yml 没有直接存储在src/main/resources 中,所以它没有被加载。

在您的EntryPoint.java 文件中,您可以添加@PropertySource 注释并提供您的application.yml 的路径,或者您应该将文件直接存储在资源文件夹下。

【讨论】:

    【解决方案2】:

    构建项目时,application.yml 或 application.properties 文件应位于您的类路径中。 Spring boot 设计了它的结构,当执行 maven 构建时,来自 src/main/resources 的属性文件与其他源文件一起放入 classes 目录。

    因此需要将这些文件直接放在src/main/resources中

    如果您仍希望将文件保存在其他地方,您可以使用@PropertySource 指向该位置

    【讨论】:

      猜你喜欢
      • 2022-01-17
      • 1970-01-01
      • 2020-07-29
      • 2020-07-10
      • 1970-01-01
      • 2018-10-10
      • 2022-08-18
      • 2019-01-13
      • 1970-01-01
      相关资源
      最近更新 更多