简体   繁体   中英

Java Reflection - How to exclude interface when loading the class dynamically

I use spring framework to find the class and its methods and arguments dynamically.

these are the methods I use :

public List<Class> findMyTypes(String basePackage) throws IOException, ClassNotFoundException
    {
        ResourcePatternResolver resourcePatternResolver = new PathMatchingResourcePatternResolver();
        MetadataReaderFactory metadataReaderFactory = new CachingMetadataReaderFactory(resourcePatternResolver);

        List<Class> candidates = new ArrayList<Class>();
        String packageSearchPath = ResourcePatternResolver.CLASSPATH_ALL_URL_PREFIX +
                                   resolveBasePackage(basePackage) + "/" + "**/*.class";
        Resource[] resources = resourcePatternResolver.getResources(packageSearchPath);
        for (Resource resource : resources) {
            if (resource.isReadable()) {
                MetadataReader metadataReader = metadataReaderFactory.getMetadataReader(resource);
                if (isCandidate(metadataReader)) {
                    candidates.add(Class.forName(metadataReader.getClassMetadata().getClassName()));
                }
            }
        }
        return candidates;
    }
    public String resolveBasePackage(String basePackage) {
        return ClassUtils.convertClassNameToResourcePath(SystemPropertyUtils.resolvePlaceholders(basePackage));
    }

    @SuppressWarnings({ "rawtypes", "unchecked" })
    public boolean isCandidate(MetadataReader metadataReader) throws ClassNotFoundException
    {
        try {
            Class c = Class.forName(metadataReader.getClassMetadata().getClassName());
            if (c.getAnnotation(Controller.class) != null) {
                return true;
            }
        }
        catch(Throwable e){
        }
        return false;
    }

I load the class which has got annotation @Controller . It is working fine but I want to load only the class not interface also how do I get the methods and the arguments of the class loaded.

EDIT :

This is how I get all the class names and try to get the methods name :

List classNames = hexgenClassUtils.findMyTypes("com.hexgen.*");
            Iterator<Class> it = classNames.iterator();
            while(it.hasNext())
            {
                Class obj = it.next(); 
                System.out.println("Class  :"+obj.toString());

                cls = Class.forName(obj.toString());
                Method[] method = cls.getMethods();
                for (Method method2 : method) {
                    System.out.println("Method name : "+method2.toGenericString());
                }
                // TODO  something with obj
            }

The problem I face is class com.hexgen.api.facade.HexgenWebAPI here class is coming because of which I am not able to load the class dynamically and get the following exception.

java.lang.ClassNotFoundException: class com.hexgen.api.facade.HexgenWebAPI so how to solve it.

Kindly help me to find the solution.

Best Regards

try

        Class c = Class.forName(metadataReader.getClassMetadata().getClassName());
        if (!c.isInterface() && c.getAnnotation(Controller.class) != null) {
            return true;
        }

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM