作者热门文章
- iOS/Objective-C 元类和类别
- objective-c - -1001 错误,当 NSURLSession 通过 httpproxy 和/etc/hosts
- java - 使用网络类获取 url 地址
- ios - 推送通知中不播放声音
JDK9 将(可能)引入模块系统。作为其中的一部分,Java 类库将被模块化。
当找不到类时,这可能会导致异常,因为它们位于尚未指定为依赖项的模块中。
将使用模块系统创建的模块是什么?它们各自的内容是什么?
或换句话说:给定一个未加载的类,我如何找到合适的模块作为依赖项包含在内?
最佳答案
how do I find the proper module to include as a dependency?
考虑这个恶搞类:
import java.sql.DriverManager;
import java.rmi.RemoteException;
public class UserDao {
DriverManager driverManager = null;
public void service() throws RemoteException {
if (true) {
throw new RemoteException();
}
}
}
假设这个类被编译成user-dao.jar
。 jdeps 工具就是答案(使用 9ea170):
jdeps --list-deps user-dao.jar
java.base
java.rmi
java.sql
(请注意,jdeps
随 JDK 8 一起提供,但在 JDK 9 中更合适。)
为了完整起见,如果您知道代码使用特定类(例如 java.sql.DriverManager
)并且您怀疑需要一个模块(例如 java.sql
), 可以通过 the doc 确认模块,或在命令行上(同样使用 9ea170):
bash$ java --describe-module java.sql
java.sql@9-ea
exports java.sql
exports javax.sql
exports javax.transaction.xa
requires java.xml transitive
requires java.base mandated
requires java.logging transitive
uses java.sql.Driver
关于java - JDK9 中有哪些预定义模块或者我需要哪个模块来修复依赖问题?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/44581593/
我是一名优秀的程序员,十分优秀!