提供服务接口实现的模块在模块描述符文件中包含“provides”语句。如果模块在模块描述符文件中没有“provides”语句,则服务加载器无法加载该模块。
我们可以创建Service提供者接口通过使用以下步骤:
在下面,我们可以定义服务提供商接口。
<strong>package com.tutorialspoint.serviceproviderinterface.spi; public interface ServiceProviderInterface { void printServiceName(); }</strong>
以上是我们如何在Java 9中创建一个服务提供者接口?的详细内容。更多信息请关注PHP中文网其他相关文章!