Home >Java >javaTutorial >How can we create a service provider interface in Java 9?
Provides services Modules that implement the interface contain the "provides" statement in the module descriptor file. If a module does not have a "provides" statement in the module descriptor file, the service loader cannot load the module.
We can create a Service Provider Interface by using the following steps:
Below we can define the service provider interface.
<strong>package com.tutorialspoint.serviceproviderinterface.spi; public interface ServiceProviderInterface { void printServiceName(); }</strong>
The above is the detailed content of How can we create a service provider interface in Java 9?. For more information, please follow other related articles on the PHP Chinese website!