Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我正在关注本教程,该教程试图通过构建最小的 JVM 来最小化 JVM 内存占用。
当我跑步时jdeps -s myjar.jar,我得到:
jdeps -s myjar.jar
myjar.jar -> java.base myjar.jar -> java.logging myjar.jar -> not found
在本教程中,他通过运行另一个命令解决了这个问题。
jdeps -cp 'lib/*' -recursive -s myjar.jar
我试过这个,但我得到了相同的结果。
如何正确运行?
对于 Maven 项目,您可以这样做:
mvn dependency:build-classpath
jdeps -cp <paste output here> -s -recursive myjar.jar