编程语言
首页 > 编程语言> > Java Service Provider Interface

Java Service Provider Interface

作者:互联网

Terms and Definitions of Java SPI

Java SPI 定义了四个主要组件

Service

A well-known set of programming interfaces and classes that provide access to some specific application functionality or feature.

Service Provider Interface

An interface or abstract class that acts as a proxy or an endpoint to the service.

If the service is one interface, then it is the same as a service provider interface(SPI).

Service and SPI together are well-known in the Java Ecosystem as API.

Service Provider

A specific implementation of the SPI. The Service Provider contains one or more concrete classes that implement or extend the service type.

A Service Provider is configured and identified through a provider configuration file which we put in the resource directory META-INF/services. The file name is the fully-qualified name of the SPI and its content is the fully-qualified name of the SPI implementation.

The Service Provider is installed in the form of extensions, a jar file which we place in the application classpath, the Java extension classpath or the user-defined classpath.

ServiceLoader

At the heart of the SPI is the ServiceLoader class. This has the role of discovering and loading implementations lazily. It uses the context classpath to locate provider implementations and put them in an internal cache.

conference

Java Service Provider Interface

标签:Java,service,Service,classpath,SPI,Provider,Interface
来源: https://www.cnblogs.com/p136f/p/16227183.html