1

答えを探してみましたが、何も思いつきませんでした。パッケージの複数の部分の下に複数のクラスを持つ既存の JAR を活用したいと考えています。これらのクラスには JAX-RS アノテーションが含まれているため、CXF を使用してそれらすべてをロードし、CXF エンドポイントとして関連付けたいと考えていました。

CXF でパッケージを指定して、すべてのクラスをエンドポイントに接続することは可能ですか?

4

1 に答える 1

1

私が知る限り、いくつかの注釈が付けられたCXFクラスからいくつかのクラスをロードしません。jarこれは手動で行う必要があります。たとえば、特定の注釈で注釈が付けられたクラスを取得するには、これを使用できます。

public class AnnotationHandler {

    private static final Logger LOGGER = LoggerFactory.getLogger(AnnotationHandler.class);

    /**
     * Scans all classes accessible from the context class loader which belong to the given package and sub packages.
     *
     * @param packageName the base package
     * @return The classes
     * @throws ClassNotFoundException if class not found exception occurs
     * @throws IOException            if IO error occurs
     */
    public Iterable<Class> getClasses(String packageName)
            throws ClassNotFoundException, IOException {
        ClassLoader classLoader = Thread.currentThread().getContextClassLoader();
        String path = packageName.replace('.', '/');
        Enumeration<URL> resources = classLoader.getResources(path);
        LinkedList<File> dirs = new LinkedList<File>();
        while (resources.hasMoreElements()) {
            URL resource = resources.nextElement();
            dirs.add(new File(resource.getFile()));
        }
        LinkedList<Class> classes = new LinkedList<Class>();
        for (File directory : dirs) {
            classes.addAll(findClasses(directory, packageName));
        }
        return classes;
    }

    /**
     * Recursive method used to find all classes in a given directory and sub directories.
     *
     * @param directory   the base directory
     * @param packageName the package name for classes found inside the base directory
     * @return the classes
     * @throws ClassNotFoundException if class not found exception occurrs
     */
    private LinkedList<Class> findClasses(File directory, String packageName)
            throws ClassNotFoundException {
        LinkedList<Class> classes = new LinkedList<Class>();
        if (!directory.exists()) {
            return classes;
        }
        File[] files = directory.listFiles();
        if (files != null) {
            for (File file : files) {
                if (file.isDirectory()) {
                    classes.addAll(findClasses(file, packageName + "." + file.getName()));
                } else if (file.getName().endsWith(".class")) {
                    classes.add(Class.forName(
                            packageName + '.'
                                    + file.getName().substring(0, file.getName().length() - 6)));
                }
            }
        }
        return classes;
    }

    /**
     * Finds all classes annotated with passed annotation in provided package. Unchecked system exception might be
     * thrown if the class is not found or IO exception occurs.
     *
     * @param annotationClass annotation class
     * @param packageName     package name to search for annotated classes
     * @return list of annotated class with specified annotation
     */
    public LinkedList<Class> findAnnotatedClasses(Class annotationClass, String packageName) {
        LinkedList<Class> classes = new LinkedList<Class>();
        try {
            for (Class clazz : getClasses(packageName)) {
                if (clazz.isAnnotationPresent(annotationClass)) {
                    classes.add(clazz);
                }
            }
        } catch (ClassNotFoundException ex) {
            LOGGER.error("Class not found exception occurred.", ex);
            throw new SystemException("Class not found exception occurred.", ex);
        } catch (IOException ex) {
            LOGGER.error("IO exception occurred.", ex);
            throw new SystemException("IO exception occurred.", ex);
        }
        return classes;
    }

}

findAnnotatedClasses調べるアノテーション クラスとパッケージ名を指定して呼び出すと、指定したアノテーションでアノテーションが付けられたクラスのリストが表示されます。

その後、それらのクラスで好きなことを行うことができます。

于 2012-09-11T16:23:01.297 に答える