Java Service Provider Interface

2022/5/6 9:12:57

本文主要是介绍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 Provider Interface的文章就介绍到这儿,希望我们推荐的文章对大家有所帮助,也希望大家多多支持为之网!


扫一扫关注最新编程教程