gpt4 book ai didi

java - generate-module-info jdeps 时缺少依赖项

转载 作者:塔克拉玛干 更新时间:2023-11-03 02:58:59 27 4
gpt4 key购买 nike

我正在尝试使用以下命令运行 jdeps:

jdeps --module-path modules --generate-module-info out com.demo.market.jar

我的 com.demo.market.jar 依赖于应用程序模块和自动模块。我将所有依赖项放在“模块”文件夹中,但出现错误:

Error: missing dependencies
com.demo.market.platform.MarketPlace -> com.demo.client.wholesale.Client not found
com.demo.market.platform.MarketPlace -> com.demo.product.api.Product not found
com.demo.market.platform.MarketPlace -> com.demo.product.laptop.Laptop not found
com.demo.market.collector.ProductsCollector -> com.demo.logistic.DeliveryService not found
com.demo.market.collector.ProductsCollector -> com.demo.product.api.Product not found

但是当我添加 --add-modules 时它工作正常。

jdeps --module-path modules --add-modules com.demo.client,com.demo.product,com.demo.logistic --generate-module-info out com.demo.market.jar

我做错了什么吗?我以为 jdeps 会找到所有模块,而不是手动添加它们。

最佳答案

当您执行以下操作时:

jdeps --module-path modules --generate-module-info out com.demo.market.jar

从目录中解析的模块是可观察模块,在您的情况下,它们无法进入根模块


关于问题的另一部分 -

jdeps --module-path modules --add-modules com.demo.client,com.demo.product,com.demo.logistic --generate-module-info . com.demo.market.jar

而另一方面,显式添加它们可确保模块存在于根模块集中。


作为替代方案(来自 JEP261#Module System ,您可以尝试使用命令

jdeps --module-path modules --add-modules=ALL-MODULE-PATH --generate-module-info out com.demo.market.jar 

As a final special case, at both run time and link time, if is ALL-MODULE-PATH then all observable modules found on the relevant module paths are added to the root set. ALL-MODULE-PATH is valid at both compile time and run time. This is provided for use by build tools such as Maven, which already ensure that all modules on the module path are needed. It is also a convenient means to add automatic modules to the root set.


旁注,就要执行的命令而言:-

  • 此外,问题中共享的 jdeps 输出理想情况下适用于 -verbose:class

关于java - generate-module-info jdeps 时缺少依赖项,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/47500529/

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