gpt4 book ai didi

java - gradle 6.0 实现是否在类路径中包含项目类

转载 作者:行者123 更新时间:2023-12-01 19:03:49 25 4
gpt4 key购买 nike

我包含一个在 Gradle 6.0 中使用的项目:

implementation project(":soa-wallet:soa-wallet-api")

它编译成功,但是当我运行应用程序时,它抛出错误:

at org.springframework.boot.SpringApplication.run(SpringApplication.java:1248) [spring-boot-2.1.3.RELEASE.jar:2.1.3.RELEASE]
at com.sportswin.soa.wallet.AppStarter.main(AppStarter.java:32) [main/:na]
Caused by: java.io.FileNotFoundException: class path resource [com/sportswin/soa/wallet/controller/IFeignClientWalletConsumeRecordController.class] cannot be opened because it does not exist
at org.springframework.core.io.ClassPathResource.getInputStream(ClassPathResource.java:180) ~[spring-core-5.1.5.RELEASE.jar:5.1.5.RELEASE]
at org.springframework.core.type.classreading.SimpleMetadataReader.<init>(SimpleMetadataReader.java:51) ~[spring-core-5.1.5.RELEASE.jar:5.1.5.RELEASE]

IFeignClientWalletConsumeRecordController在引用项目中,为什么运行时没有找到类?我应该怎么做才能解决这个问题?

最佳答案

我终于找到了org.springframework.boot插件将我的soa-wallet-api自动打包到应用程序中,而不是库,因此找不到使用此库类,解决问题,可以使用以下代码启用lib包:

 jar{
// enable package thin Jar
enabled = true
}

这应该可以解决这个问题。

关于java - gradle 6.0 实现是否在类路径中包含项目类,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/59591741/

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