我正在尝试实现一个@Restricted
注释,以一种用户只能在登录并具有特定角色时才能访问它们的方式来保护控制器方法。我在使用 JSF 和 CDI 的 Tomcat 7 上,所以没有 EJB。只要注解接口没有指定任何参数,拦截器就会被调用。一旦我添加了一个@Nonbinding Role value() default Role.ADMIN;
参数,拦截器和控制器方法都不会执行。也没有错误或异常。这是我的代码,我真的不知道它有什么问题:
注解:
@InterceptorBinding
@Retention(RetentionPolicy.RUNTIME)
@Target({ ElementType.TYPE, ElementType.METHOD })
public @interface Restricted {
@Nonbinding Role value() default Role.ADMIN; // ###
}
拦截器:
@Interceptor
@Restricted
public class RoleBasedRestrictingInterceptor implements Serializable {
@Inject
ISecurityManager security;
@AroundInvoke
public Object intercept(final InvocationContext ctx) throws Exception {
final Restricted annotation = ctx.getClass().getAnnotation(Restricted.class);
log.info("Intercepted, required role is: {}", annotation.value()); // ###
log.info("User is logged in: {}", security.isLoggedIn());
return ctx.proceed();
}
}
控制器:
@Named("manageUsers")
@SessionScoped
public class ManageUsersBacking extends implements Serializable {
@Restricted(Role.ADMIN) // ###
public void testRestricted() {
log.info("testRestricted()");
}
}
这些###
事件标记了必须更改或删除的内容才能使其再次工作。拦截器在 中正确定义WEB-INF/beans.xml
,因为它在我的注释中没有角色参数的情况下工作。
16:04:33.772 [http-apr-8080-exec-11] INFO c.m.s.RoleBasedRestrictingInterceptor - User is logged in: true
16:04:33.772 [http-apr-8080-exec-11] INFO c.m.c.admin.ManageUsersBacking - testRestricted()