7

我正在 JDK 9 上试验 SPI。整个示例适用于没有“module-info.java”的 JDK 9。添加“module-info.java”后,ServiceLocator 没有找到实现类。我很困惑,在模块化的 JDK 9 项目中找不到有效的 SPI 示例。

所以我的示例项目如下所示:

/spidemo
├── apiModule
│   ├── pom.xml
│   └── src
│       └── main
│           └── java
│               ├── eu
│               │   └── com
│               │       └── example
│               │           └── text
│               │               └── spi
│               │                   └── TextAPI.java
│               └── module-info.java
├── applicationB
│   ├── pom.xml
│   └── src
│       └── main
│           ├── java
│           │   └── eu
│           │       └── com
│           │           └── example
│           │               └── spi
│           │                   └── b
│           │                       └── application
│           │                           └── DemoB.java
│           └── module-info.java
├── applicationCommon
│   ├── pom.xml
│   └── src
│       └── main
│           └── java
│               ├── eu
│               │   └── com
│               │       └── example
│               │           └── spi
│               │               └── application
│               │                   └── TextAPIProvider.java
│               └── module-info.java
├── implementationB
│   ├── pom.xml
│   └── src
│       └── main
│           ├── java
│           │   └── eu
│           │       └── com
│           │           └── example
│           │               └── implb
│           │                   └── text
│           │                       └── TextB.java
│           ├── module-info.java
│           └── resources
│               └── META-INF
│                   └── services
│                       └── eu.com.example.text.spi.TextAPI

我已经介绍了界面:

package eu.com.example.text.spi;
public interface TextAPI {
    String getHelloWorldText();
}

该接口通过以下方式实现:

package eu.com.example.implb.text;
import eu.com.example.text.spi.TextAPI;
public class TextB implements TextAPI { 
    public String getHelloWorldText() {
        return "Text from B implementation";
    }
}

通过类似于以下的代码搜索实现:

package eu.com.example.spi.application;
import eu.com.example.text.spi.DefaultTextAPI;
import eu.com.example.text.spi.TextAPI;
import java.util.ServiceLoader;
public class TextAPIProvider {

    public static TextAPI getProvider(String providerName) {
        ServiceLoader<TextAPI> serviceLoader = ServiceLoader.load(TextAPI.class);
        for (TextAPI provider : serviceLoader) {
            String className = provider.getClass().getName();
            if (providerName.equals(className)) {
                return provider;
            }
        }
        throw new RuntimeException(providerName + " provider is not found!");
    }
}

现在是有趣的部分。当我在没有以下情况下执行课程时:

  • /implementationB/src/main/java/module-info.java
  • /applicationB/src/main/java/module-info.java

然后找到实现类并打印出文本。

package eu.com.example.spi.b.application;
import eu.com.example.spi.application.TextAPIProvider;
public class DemoB {
    public static void main(String[] args) {
        System.out.println("---> " + TextAPIProvider.getProvider("eu.com.example.implb.text.TextB").getHelloWorldText());
    }
}

引入这两个“module-info.java”文件后,ServiceLocator没有找到实现类。/applicationB/src/main/java/module-info.java的内容:

module eu.com.example.applicationB {
    requires eu.com.example.apiModule;
    requires transitive eu.com.example.applicationCommon;
    uses eu.com.example.text.spi.TextAPI;
}

/implementationB/src/main/java/module-info.java的内容:

module eu.com.example.implb.text {
    requires eu.com.example.apiModule;
    exports eu.com.example.implb.text;
//    provides eu.com.example.implb.text.TextB with eu.com.example.text.spi.TextAPI;
}

当我取消注释时:

provides eu.com.example.implb.text.TextB with eu.com.example.text.spi.TextAPI;

行然后发生编译错误:

.../implementationB/src/main/java/module-info.java:[7,74] the service implementation type must be a subtype of the service interface type, or have a public static no-args method named "provider" returning the service implementation
.../implementationB/src/main/java/module-info.java:[7,5] service implementation must be defined in the same module as the provides directive

我曾尝试将包名称更改为编译错误提示,但随后我引入了“拆分包”问题。

我应该怎么做才能在完全模块化的 JDK 9 中使用 ServiceLocator?可能吗?有没有人看过工作的例子?代码也可以在这里看到:https ://github.com/RadoslawOsinski/spidemo

4

2 回答 2

5

您可以更改为使用:-

provides eu.com.example.text.spi.TextAPI with eu.com.example.implb.text.TextB; 
// you provide a service through its implementation

代替

provides eu.com.example.implb.text.TextB with eu.com.example.text.spi.TextAPI; 

文档中的服务提供了围绕实施的示例。

于 2017-10-08T14:36:19.057 回答
0

一个模块可以指定它通过特定类型的服务提供者来提供服务。它是使用providesandwith关键字声明的。

语法:serviceType提供implementationTypes;

(可以将多个实现类型指定为逗号分隔的列表)

因此,在您的模块中eu.com.example.implb.text应添加以下语句。

provides eu.com.example.implb.text.TextB with eu.com.example.text.spi.TextAPI;

注意:provides不等于exports。因此,如果不导出,任何其他需要的模块eu.com.example.implb.text都不会访问。eu.com.example.implb.text.TextB

于 2021-08-09T03:45:45.177 回答