我正在为此而努力。
这是一个简单的Spring Boot应用程序。我正在尝试使用yaml属性文件,但似乎无法找到它来查找属性文件或让我访问其中的值。我在这里和其他地方搜索过的建议都尝试了多种变体。什么都没用。
(由于我无法进入的原因,我必须使用旧版的Spring。(1.5.9))
在IntelliJ中,我安装了Lombok插件,启用了注释并将语言设置为Java 1.8。
这是我当前遇到的错误:
[ERROR] demo/src/main/java/com/example/demo/Foo.java:[9,10] cannot find symbol
[ERROR] symbol: method value()
[ERROR] location: @interface lombok.Value
[ERROR] demo/src/main/java/com/example/demo/Foo.java:[9,3] annotation type not applicable to this kind of declaration
[ERROR] demo/src/main/java/com/example/demo/Foo.java:[13,5] cannot find symbol
[ERROR] symbol: variable log
[ERROR] location: class com.example.demo.Foo
这是文件夹结构:
这是application.yml文件:
project:
thing:
path: resources/foo_files
这是主要班级:
package com.example.demo;
import org.springframework.boot.SpringApplication;
import org.springframework.boot.autoconfigure.SpringBootApplication;
@SpringBootApplication
public class DemoApplication {
public static void main(String[] args) {
Foo foo = new Foo();
SpringApplication.run(DemoApplication.class, args);
}
}
这是Foo类:
package com.example.demo;
import lombok.Value;
import lombok.extern.slf4j.Slf4j;
@Slf4j
class Foo {
@Value("${project.thing.path}")
private String projectThingPath;
public Foo() {
log.info("path is: " + projectThingPath);
}
}
这是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>1.5.21.RELEASE</version>
<relativePath/> <!-- lookup parent from repository -->
</parent>
<groupId>com.example</groupId>
<artifactId>demo</artifactId>
<version>0.0.1-SNAPSHOT</version>
<name>demo</name>
<description>Demo project for Spring Boot</description>
<properties>
<java.version>1.8</java.version>
</properties>
<dependencies>
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter</artifactId>
</dependency>
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-configuration-processor</artifactId>
<optional>true</optional>
</dependency>
<dependency>
<groupId>org.projectlombok</groupId>
<artifactId>lombok</artifactId>
<optional>true</optional>
</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>
答案 0 :(得分:2)
要从application.yml中获取价值,您应该使用T
软件包中的@Value
,但您要使用lombok的@Value
org.springframework.beans.factory.annotation.Value
因此,另一个重要的一点是,应该使用构造型注释对类进行注释(以告诉Spring配置数据)。
答案 1 :(得分:1)
您正在编译错误,因为您使用的是 @ Slf4j (lombok批注),但是在依赖项中没有 Slf4j lib
>在这种情况下,您可以使用 @Log 或将 Slf4j 添加到您的依赖项中