Java 프로그래밍을 통해 포괄적인 인터페이스 구현 목록 가져오기
Java에서는 프로그래밍 방식으로 컬렉션을 검색해야 하는 경우가 종종 있습니다. 특정 인터페이스를 구현하는 클래스. 이는 다양한 접근 방식을 통해 달성할 수 있으며 그 중 일부에는 반사 또는 기타 특수 기술 활용이 포함됩니다.
Reflection 라이브러리 사용: Reflections
Reflections 라이브러리는 편리한 방법을 제공합니다. 클래스 메타데이터와 관계를 검사합니다. Reflections 인스턴스를 활용하면 다음 예에서 설명한 것처럼 원하는 인터페이스를 확장하는 클래스 세트를 얻을 수 있습니다.
Reflections reflections = new Reflections("firstdeveloper.examples.reflections"); Set<Class<? extends Pet>> classes = reflections.getSubTypesOf(Pet.class);
Employing ServiceLoader
ServiceLoader 런타임에 서비스 제공자 구현을 찾고 로드하기 위한 메커니즘을 제공합니다. 인터페이스 구현을 검색하기 위해 이 기술을 활용하려면 ServiceProviderInterface(SPI)를 정의하고 해당 구현을 선언합니다. 다음 코드는 접근 방식을 보여줍니다.
ServiceLoader<Pet> loader = ServiceLoader.load(Pet.class); for (Pet implClass : loader) { System.out.println(implClass.getClass().getSimpleName()); // prints Dog, Cat }
패키지 수준 주석 활용
또 다른 대안은 패키지 수준 주석을 사용하는 것입니다. 이 접근 방식에는 인터페이스 구현을 지정하는 사용자 정의 주석 생성이 수반됩니다. 다음 코드 샘플은 주석을 정의하는 방법을 보여줍니다.
@Retention(RetentionPolicy.RUNTIME) @Target(ElementType.PACKAGE) public @interface MyPackageAnnotation { Class<?>[] implementationsOfPet() default {}; }
패키지에서 주석을 선언하려면 package-info.java라는 파일을 생성하고 다음 내용을 포함합니다.
@MyPackageAnnotation(implementationsOfPet = {Dog.class, Cat.class}) package examples.reflections;
그런 다음 다음 코드를 사용하여 인터페이스 구현을 검색할 수 있습니다.
Package[] packages = Package.getPackages(); for (Package p : packages) { MyPackageAnnotation annotation = p.getAnnotation(MyPackageAnnotation.class); if (annotation != null) { Class<?>[] implementations = annotation.implementationsOfPet(); for (Class<?> impl : implementations) { System.out.println(impl.getSimpleName()); } } }
위 내용은 Java에서 인터페이스 구현의 전체 목록을 프로그래밍 방식으로 어떻게 얻을 수 있습니까?의 상세 내용입니다. 자세한 내용은 PHP 중국어 웹사이트의 기타 관련 기사를 참조하세요!