我有一个利用JPMS功能的多模块Maven项目。使用者模块未加载提供者模块中存在的实现。
这是Maven项目的结构:
ServiceLoaderExample
├── consumer
├── distribution
├── provider
├── service
接口TestService
在“服务”模块中定义。实现是TestServiceImpl
,它在“提供者”模块中定义。而且,“消费者”模块中的main()方法使用ServiceLoader API来加载TestService
的实现。在“分发”模块中,我使用maven-assesmbly-plugin创建了一个具有所有依赖项的JAR。
因此,这是相应的模块信息文件:
1-“服务”模块(定义了org.example.service.TestService
):
module org.example.service {
exports org.example.service;
}
2-“提供程序”模块(定义了org.example.provider.TestServiceImpl
):
module org.example.provider {
requires org.example.service;
provides org.example.service.TestService with org.example.provider.TestServiceImpl;
}
3-“消费者”模块(使用ServiceLoader API获取TestService
的实现):
module org.example.consumer {
requires org.example.service;
uses org.example.service.TestService;
}
我正在使用maven-assesmbly插件,因此在构建JAR时,事情可能会搞砸。供参考,这是插件定义:
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-assembly-plugin</artifactId>
<version>3.2.0</version>
<executions>
<execution>
<phase>package</phase>
<goals>
<goal>single</goal>
</goals>
<configuration>
<archive>
<manifest>
<mainClass>org.example.consumer.Main</mainClass>
</manifest>
</archive>
<descriptorRefs>
<descriptorRef>jar-with-dependencies</descriptorRef>
</descriptorRefs>
</configuration>
</execution>
</executions>
</plugin>
我正在使用Java 13和Maven 3.6.3,并且正在使用命令java -jar distribution-1.0-SNAPSHOT-jar-with-dependencies.jar
运行该程序。我在做什么错了?
答案 0 :(得分:0)
我无法在uber-jar中使用它,但是,使用JLink时一切正常。因此决定改用JLink。