gpt4 book ai didi

java - Spring Boot 和 Gradle 多模块项目,未能正确加载依赖项

转载 作者:行者123 更新时间:2023-11-29 09:58:58 37 4
gpt4 key购买 nike

基本上我有一个使用 Gradle 构建的 spring boot 项目。该项目有一个根项目,其中包含另外 4 个子模块。根项目 settings.gradle 如下所示:

rootProject.name = 'proj'

include 'proj-app'
include 'proj-integration-tests'
include 'proj-model'
include 'proj-service'

应用模块包含 spring-boot-gradle-plugin 并公开了一些 api。

我想做的是创建仅包含集成测试的 proj-integration-tests 子模块。问题从这里开始,因为我需要 proj-app 依赖项。

所以在 proj-integration-tests 中,我有包含以下内容的 build.gradle:

dependencies {
testCompile('org.springframework.boot:spring-boot-starter-web')
testCompile('org.springframework.boot:spring-boot-starter-test')
testCompile project(':proj-app')
testCompile project(':proj-model')
}

自集成测试以来,我需要 proj-app 依赖项:

@RunWith(SpringRunner.class)
@SpringBootTest(classes = ProjApplication.class, webEnvironment = SpringBootTest.WebEnvironment.RANDOM_PORT)

需要启动位于 proj-app 模块中的 Spring boot 应用程序(ProjApplication.class)。

我从 Gradle 得到的错误是:“找不到符号 ProjApplication”。

为什么 Gradle 无法正确管理 proj-app 依赖项?提前致谢;)

最佳答案

似乎 proj-app 依赖项是以 spring boot 时尚方式构建的。这意味着获得的工件是一个可执行的 spring boot far jar。这就是为什么 proj-integration-tests 在编译时无法从 proj-app 中找到类的原因。 因此,为了维护可执行 jar,并使 proj-app 作为 proj-integration-tests 模块中的依赖项,我修改了 proj app 的 build.gradle 以创建两个 jar:以 spring boot 方式和标准版:

bootJar {
baseName = 'proj-app-boot'
enabled = true
}

jar {
baseName = 'proj-app'
enabled = true
}

关于java - Spring Boot 和 Gradle 多模块项目,未能正确加载依赖项,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/50029812/

37 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com