我有一个界面,例如
@NameBinding
@Retention(RetentionPolicy.RUNTIME)
public @interface AutoLogged {
boolean query() default false;
}
如何在拦截器实现中获取
query
参数?@Provider
@AutoLogged
public class AutoLoggedInterceptor implements WriterInterceptor {
@Context
private ResourceInfo resourceInfo;
@Override
public void aroundWriteTo(final WriterInterceptorContext context)
throws IOException, WebApplicationException {
try {
final String methodName = this.resourceInfo.getResourceMethod().getName();
BasicAutoLoggedProducer.makeCall(methodName);
} catch (final Exception e) {
e.printStackTrace(System.err);
} finally {
context.proceed();
}
}
}
我在context.getPropertyNames中找不到它。我看到带有getAnnotations方法的注释
AutoLogged
。如何从界面检索参数query
? 最佳答案
你可以做
AutoLogged annotation = resourceInfo.getResourceMethod().getAnnotation(AutoLogged.class);
if (annotation != null) {
boolean query = annotation.query();
}
“并且要设置参数
query
”不能完全确定您想听的内容,但是如果您想在运行时设置值,则我不确定目标是什么,也不确定如何做到。希望你们能“得到”而不是“设定” :-)