简体   繁体   English

Spring 启动项目看不到数据库连接数据,写在application.yml

[英]Spring Boot project can't see data for database connection, written in application.yml

I'm writing a Java project in IntelliJ IDEA Community IDE.我正在 IntelliJ IDEA 社区 IDE 中编写 Java 项目。 The technologies stack of this project:该项目的技术栈:

  • Spring Boot; Spring 启动;
  • Spring Data JPA; Spring 数据 JPA;
  • MySQL. MySQL。

I have the application.yml file in project to connect with database, but when I run my app, I get an error:我在项目中有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

I'm at a loss why my project doesn't see my application.yml file, which locates in /src/main/resources/database path in project.我不知道为什么我的项目看不到我的application.yml文件,该文件位于项目的/src/main/resources/database路径中。

Any ideas?有任何想法吗?

application.yml:应用程序.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: 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>

This project is located here:该项目位于:

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

Since the application.yml is not directly stored in src/main/resources it is not loaded.由于application.yml没有直接存储在src/main/resources中,因此它没有被加载。

In your EntryPoint.java file, you can add @PropertySource annotation and provide the path of your application.yml or you should store the file directly under the resources folder.在您的EntryPoint.java文件中,您可以添加@PropertySource注释并提供 application.yml 的路径,或者您应该将文件直接存储在资源文件夹下。

The application.yml or application.properties file should be in your classpath when the project is build.构建项目时,application.yml 或 application.properties 文件应该在您的类路径中。 Spring boot has designed its structure such that when a maven build is executed, the property files from src/main/resources are placed into the classes directory with the other source files. Spring 引导设计了它的结构,当执行 maven 构建时,来自 src/main/resources 的属性文件与其他源文件一起放入 classes 目录。

Therefore you need to directly place these files in src/main/resources因此,您需要将这些文件直接放在 src/main/resources

If you still wish to have the files elsewhere, you can point to the location with @PropertySource如果您仍希望将文件保存在其他地方,您可以使用@PropertySource指向该位置

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM