Java 有一个来自 java.util 包的 ServiceLoader 类,可以帮助定位服务通过在类路径中搜索,在运行时提供提供者。对于模块中定义的服务提供者,我们可以查看示例应用程序来声明带有服务的模块及其工作原理。
例如,我们有一个“test.app我们需要使用 Logger 模块,可以借助 我们需要使用 Logger 模块,可以借助 LoggerFinder 服务从 System.getLogger() 工厂方法检索该 Logger。
<strong>module com.tutorialspoint.test.app { requires java.logging; exports com.tutorialspoint.platformlogging.app; uses java.lang.System.LoggerFinder; }</strong>
下面是 test.app.MainApp 类:
package com.tutorialspoint.platformlogging.app; public class MainApp { private static <strong>Logger </strong>LOGGER = <strong>System.getLogger()</strong>; public static void main(String args[]) { LOGGER.log(); } }
这是“测试内的LoggerFinder实现” .logging”模块:
package com.tutorialspoint.platformlogging.logger; public class MyLoggerFinder extends LoggerFinder { <strong>@Override</strong> public Logger getLogger(String name, Module module) { // return a Logger depending on name/module } }
在“test.logging”模块声明中,我们可以通过“提供 – ”提供 LoggerFinder 服务的实现>”条款。
<strong>module com.tutorialspoint.test.logging { provides java.lang.System.LoggerFinder with com.tutorialspoint.platformlogging.logger.MyLoggerFinder; }</strong>
以上是在Java 9中,何时使用ServiceLoader类在模块中呢?的详细内容。更多信息请关注PHP中文网其他相关文章!