我正在使用 Gradle 7.0,并使用任务 Gradle Init 制作了我的项目。然后我将它导入 Eclipse(2021-03 和 buildship 3.1.5)。一切都很好,但是当我尝试读取或在 java 方法中使用“/myfile.yaml”作为路径创建文件时,它会在 D:\ 根文件夹(其中的分区)中创建它(或尝试读取它)我的 Eclipse 已安装)。
如果我不使用斜杠(“myfile.yaml”而不是“/myfile.yaml”),则在项目的根文件夹中创建文件。我认为它应该在 src/main/resources 中,直到它没有被构建。
我的目标并不是真正创建一个文件,它只是更容易测试。我的目标是阅读一些 Yaml 配置文件。我应该怎么做才能确保文件将在构建包中并在两个上下文(eclipse调试和构建包目录)中的正确位置读取?而且,设置文件路径的最佳做法是什么(sonarlint 提醒我我这样做的方式:在下面的方法中硬编码,我知道它不应该是这样的......我会使用一个常量但是sonarlint 也不喜欢)。
应用程序树:
- Project
- app
- src/main/java (containing java classes)
- src/main/resources (supposing to contain resources, yaml in my case)
- My build.gradle file
- yaml file when I try "myfile.yaml" without any /
- gradle/wrapper/gradle-wrapper.jar & gradle-wrapper.properies
- gradlew & gradlew.bat
- settings.gradle
我的 settings.gradle :
rootProject.name = 'myapp'
include('app')
我的 build.gradle:
plugins {
// Apply the application plugin to add support for building a CLI application in Java.
id 'application'
}
apply plugin:'java'
sourceCompatibility = 1.8
targetCompatibility = 1.8
repositories {
// Use Maven Central for resolving dependencies.
mavenCentral()
}
dependencies {
implementation 'com.google.guava:guava:30.0-jre'
// Yaml reader
implementation 'com.fasterxml.jackson.dataformat:jackson-dataformat-yaml:2.12.3'
testImplementation 'junit:junit:4.13.1'
}
//I tried with and without this sourceSets and the result was the same
sourceSets {
main {
java {
srcDirs= ["src/main/java"]
}
resources {
srcDirs= ["src/main/resources"]
}
}
}
application {
// Define the main class for the application.
mainClass = 'myapp.launchers.App'
}
这是使用 Jackson 库 (yaml) 写入文件的方法:
public static void writeConfiguration() throws JsonGenerationException, JsonMappingException, IOException {
WorkerConfig wc = new WorkerConfig();
WorkerPathConfig wpc = new WorkerPathConfig();
wpc.setTmpdir("\\some\\uri\\file");
wpc.setOutputdir("\\some\\other\\uri\\file");
wc.setPathConfig(wpc);
ObjectMapper objectMapper = new ObjectMapper(new YAMLFactory());
objectMapper.writeValue(new File("/application.yaml"), wc);
}