What is ServiceLoader and how is it used?
Asked Answered
F

3

7

I came across the documentation of ServiceLoader and am unclear as to what use cases it suits.

When would one use ServiceLoader?

Futures answered 6/9, 2018 at 12:59 Comment(0)
L
12

You use ServiceLoader when you want your program to have a “plugin” functionality. When you want to allow people to customize your application by adding jar files to the classpath which contain implementations of a specific subset of functionality, you can use a ServiceLoader to look for those implementations in the classpath.

ServiceLoader is itself an implementation of the jar SPI specification, which has been around for a long time. (I believe it was introduced in Java 1.3.)

Java SE already uses it for exactly that purpose in a lot of places, including:

Ludwog answered 6/9, 2018 at 14:55 Comment(1)
@AndrewTobilko Yes, ServiceLoader was introduced in 1.6 as a convenient way to accomplish what the jar specification had already documented for many years prior. Before ServiceLoader, one would have to do it manually with something like classLoader.getResources("/META-INF/services/" + spiClass.getName()).Ludwog
S
3

Are you familiar with the principle "Inversion of Control"?

Java implemented it by ServiceLoader. The class is designed to locate implementation classes of an interface on the classpath. You pass in a service interface, you get an implementation(s) of that service.

You might find a good practical example here.


P.S: Even though it's an out-of-the-box solution and a quite simple tool, I think it's outdated and not flexible enough compared to the Spring IoC Container and Google Guice.

Serpentiform answered 6/9, 2018 at 13:14 Comment(0)
G
2

ServiceLoader is Java's light weight alternative to a full blown IoC container such as Spring, Guice, etc. It has far less bells and whistles than those frameworks, but works well for basic use cases when you just want to find what classes implement an interface.

Most application servers will have some usages of ServiceLoader you can see in practice:

https://github.com/apache/tomee/search?q=ServiceLoader&unscoped_q=ServiceLoader

https://github.com/apache/tomcat/search?q=ServiceLoader&unscoped_q=ServiceLoader

https://github.com/wildfly/wildfly/search?q=ServiceLoader&unscoped_q=ServiceLoader

Gony answered 6/9, 2018 at 13:19 Comment(2)
Thanks for the links. That helps a lot.Acumen
Sorry, the links became non active.Guido

© 2022 - 2024 — McMap. All rights reserved.