All Downloads are FREE. Search and download functionalities are using the official Maven repository.

testservice.test.ServiceLoaderTest Maven / Gradle / Ivy

package testservice.test;

import java.util.ServiceLoader;

public class ServiceLoaderTest {
	static public void main(String[] args) {
		for (ITestService2 testService : ServiceLoader.load(ITestService2.class)) {
			System.out.println(testService.test());
		}
	}
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy