我正在使用反射来查找类中的方法,并获取注释“PermessiNecessari”,它描述了方法实现的操作类型(CREATE,DELETE,...)。
这是执行picketlink类PathAuthorizer的授权检查。 我得到一个被叫url,我拆分它,从url我找到实现web服务的类。然后我搜索它将被调用的方法并读取它使用的操作类型。
这是搜索方法的一部分:
Class facadeinterface = Class.forName(pm); // get the interface
Method metodo = getMetodoClasse(facadeinterface, metodoRest); // find method with @Path annotation
if(metodo != null){
PermessiNecessari rp = metodo.getAnnotation(PermessiNecessari.class);
if(rp != null){ // caso metodo con permessi
return checkPermessiModulo(m, rp);
}
if(metodo.isAnnotationPresent(NonProtetto.class)){
return true;
}
LOG.log(Level.WARNING, "Metodo trovato : {0}/{1}, ma non annotato!", new Object[]{metodoRest,metodo});
对于istance,这是经过检查的课程:
public interface VlpgmoduliManagerFacadeRemote
extends InterfacciaFacadeRemote<Vlpgmoduli>{
@POST
@javax.ws.rs.Path("getpermessimoduligruppo")
@Consumes(MediaType.APPLICATION_FORM_URLENCODED)
@Produces({MediaType.APPLICATION_JSON, MediaType.TEXT_PLAIN})
@PermessiNecessari(operation = STANDARD_OP.READ)
public GridResponse<Vlpgmoduli> getPermessiModuliGruppo(MultivaluedMap<String, String> formParams,
String callback)
throws BadRequestException;
...
该方法可以通过@javax.ws.rs.Path注释找到,但是当我想获得“PermessiNecessari”注释时,找不到这个注释!
PS:在其他课程中,这个系统运行正常。 父界面中的方法也找不到! 尝试使用另一个扩展相同接口的接口,并找到所有方法(也是继承的)。
这是我的注释:
@Retention(RetentionPolicy.RUNTIME)
@Target(ElementType.METHOD)
public @interface PermessiNecessari {
Class resourceClass() default void.class;
String operation() default "";
String modulo() default "";
}
这是搜索实现Web服务的方法的方法:
private Method getMetodoClasse(Class facade, String metodo){
for(Method method : facade.getMethods()){
Path p = method.getAnnotation(Path.class);
if(p != null && ( p.value().equals(metodo) || p.value().equals("/"+metodo) )){
return method;
}
}
for (Class c : facade.getInterfaces()) {
for (Method method : c.getDeclaredMethods()) {
Path p = method.getAnnotation(Path.class);
if(p != null && ( p.value().equals(metodo) || p.value().equals("/"+metodo) )){
return method;
}
}
}
return null;
}
编辑: 这不是注释问题。我尝试了这张支票:
public boolean haAnnotazione(Method method, Class annotationType){
Annotation annotazioni[] = method.getAnnotations();
for(Annotation a : annotazioni){
if(a.annotationType().getName().equals(annotationType.getName())){
return true;
}
}
return false;
}
如果我使用 a.annotationType()。equals(annotationType),即使它们是相同的,它也会返回false;如果我使用该类的名称,它可以工作!
也许是一个类加载器问题?该软件在Wildfly中运行。
答案 0 :(得分:1)
解决!
这是依赖性错误。项目中有2个不同的依赖版本,因此加载的注释实际上是两个不同的类。
下一次:如果你有一些强制转换异常,或者如果两个相等的Class不相等,请在你的pom.xml中检查不同的依赖关系。
...真的没有解决,EAR / lib和WAR / lib中的类之间存在类加载器问题,但这是另一个问题
答案 1 :(得分:0)
@PermessiNecessari
必须是Runtime retention,因为如果保留不同,编译器将删除不包含有关该注释的信息到字节码中。
这就是为什么你的注释在运行时没有找到 - 它不在那里。