ServiceLoader to find implementations of an interface

后端 未结 3 2165
孤街浪徒
孤街浪徒 2020-12-24 03:39

I tried to use the Java ServiceLoader to find all classes that implement a specific interface like so:

loader = ServiceLoader.load(Operation.class);
try {
           


        
相关标签:
3条回答
  • 2020-12-24 03:53

    ServiceLoader cannot do it.

    In order to expose class as a service that can be discovered by ServiceLoader you need to put its name into provider configuration file, as described in Creating Extensible Applications With the Java Platform .

    There are no built-in ways find all classes that implement a particular interface. Frameworks that can do something similar use their own classpath scanning solutions (and even with custom classpath scanning it's not easy because .class files only store information about interfaces implemented directly, not transitively).

    0 讨论(0)
  • 2020-12-24 03:59

    If the implementations are ones that you wrote yourself, you could use AutoService to make them available through the ServiceLoader interface, eg

    @AutoService(Operation.class)
    class Foo implements FooInterface {
    
    }
    
    @AutoService(Operation.class)
    class Bar extends Foo {
    
    }
    
    0 讨论(0)
  • 2020-12-24 04:03

    In order to scan your classpath at runtime for implementations of specific interface you would need to use different solution eg. Reflections (notice s on the end, this is not java's Reflection API)

    0 讨论(0)
提交回复
热议问题