我自定义了一个注解,想能通过NutIoc去取出所有加了我自定义的注解的class列表,可否有提供这个功能?
我看org.nutz.ioc.impl.NutIoc里有个这个方法:
public <T> T get(Class<T> type) throws IocException {
InjectName inm = type.getAnnotation(InjectName.class);
if (null != inm && (!Strings.isBlank(inm.value())))
return get(type, inm.value());
IocBean iocBean = type.getAnnotation(IocBean.class);
if (iocBean != null && (!Strings.isBlank(iocBean.name())))
return get(type, iocBean.name());
return get(type, Strings.lowerFirst(type.getSimpleName()));
}
可否提供根据传的注解类,获取所有加了此注解的class列表方法?