I am writing a web app in Eclipse.
I am trying to use the ServiceLoader class to load some plugins.
The docs for ServiceLoader say I need to place a file in META-INF/services.
I have placed the file in the WebContent/META-INF/service folder but when I run the JUnit test via Eclipse it does not find any plugins.
Is this the correct location for the file?
Also, how can I get more debug info from ServiceLoader such as the folders it is searching for the file in?