Understanding Java’s SPI Mechanism
Java 6 introduced a feature for discovering and loading implementations that match a given interface: the Service Provider Interface (SPI). SPI is a mechanism provided by Java to discover and load implementations that match a given interface. It is mainly used to extend existing system applications, among other things. There are many applications in the … Read more