我在设置Java EE 6 CDI拦截器时遇到问题。我正在使用嵌入式glassfish,我在web应用程序的beans.xml中指定了拦截器。
<beans
xmlns="http://java.sun.com/xml/ns/javaee"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="
http://java.sun.com/xml/ns/javaee
http://java.sun.com/xml/ns/javaee/beans_1_0.xsd">
<interceptors>
<class>ServiceInterceptor</class>
</interceptors>
</beans>
我正在尝试保护这个bean:
@Named
//@Stateless
@RequestScoped
public class SecuredMethodJSFBean /*implements Serializable*/{
@Inject
protected SecuredMethodSample securedMethodSample;
/*
@CurrentUser
@SessionScoped
@Inject
protected RuntimePrincipalAware principal;
//protected JSFLoginBean jsfLoginBean;
*/
public SecuredMethodJSFBean()
{
super();
System.out.println("creating secured method jsf bean");
}
@Secured("adfadfafd")
public void doSomething()
{
//System.out.println("\n\n\n\nprincipal:" + principal);
//System.out.println("principal:" + jsfLoginBean.getPrincipal());
//securedMethodSample.doSomething(jsfLoginBean.getPrincipal().getName());
//return(jsfLoginBean.getPrincipal().getName());
//securedMethodSample.doSomething(principal.getName());
//return(principal.getName());
//return("secured-method");
securedMethodSample.doSomething("testing ...");
}
}
我需要做些什么来让我的拦截器运行?
另外,我试图使用拦截器来拦截servlet使用的bean上的方法调用。由于这些bean是豆类,我应该能够拦截它们。但是,我无法这样做。我原本试图直接拦截servlet中的方法调用,但它们不是CDI bean,因此没有意义。
谢谢,
沃尔特
答案 0 :(得分:1)
“我已在web应用程序中的beans.xml中指定了拦截器”
@Secured是否在另一个项目/ jar中定义?在这种情况下,您需要在beans.xml中启用它。
答案 1 :(得分:0)
为了更好地回答我的问题,我做了以下事情:
沃尔特