我使用Spring Boot gradle插件构建可执行的战争。我在src / main / resources中有一个FindResource.java类来查找文件:
FindResource.class.getResource(templateName).toURI()
当我执行gradle构建时,我收到错误,无法解析类FindResource。我是否需要Spring Boot gradle插件,它还应该使用resources目录中的类。我怎么能这样做?
我的build.gradle如下所示:
buildscript {
ext {
springBootVersion = '1.2.5.RELEASE'
}
repositories {
mavenCentral()
}
dependencies {
classpath("org.springframework.boot:spring-boot-gradle-plugin:${springBootVersion}")
classpath("io.spring.gradle:dependency-management-plugin:0.5.2.RELEASE")
}
}
apply plugin: 'java'
apply plugin: 'eclipse'
apply plugin: 'spring-boot'
apply plugin: 'io.spring.dependency-management'
jar {
baseName = 'abc'
version = '0.0.1-SNAPSHOT'
}
sourceCompatibility = 1.8
targetCompatibility = 1.8
repositories {
mavenCentral()
}
dependencies {
compile("org.springframework.boot:spring-boot-starter-data-jpa")
compile("org.springframework.boot:spring-boot-starter-jersey")
compile("org.springframework.boot:spring-boot-starter-web")
compile("org.apache.pdfbox:pdfbox:1.8.10")
compile('org.apache.poi:poi-ooxml:3.12')
compile('org.apache.poi:poi-scratchpad:3.12')
runtime("org.hsqldb:hsqldb")
testCompile("org.springframework.boot:spring-boot-starter-test")
}
task wrapper(type: Wrapper) {
gradleVersion = '2.3'
}
答案 0 :(得分:0)
正如在注释类中提到的要加载的文件需要在src / main / java /而不是在src / main / resources中。 This link可能会为您提供有关此结构惯例的更多信息。