我决定尝试interceptors
我的第一个拦截器绑定注释是
@Inherited
@InterceptorBinding
@Target({TYPE})
@Retention(RUNTIME)
public @interface WithLog {
// No parameters required
}
拦截器类是
@Interceptor
@WithLog
public class LogInterceptor {
@AroundInvoke
private Object logMethod(InvocationContext context) throws Exception {
System.out.println("Method " + context.getMethod().getName() +
" of class " + context.getTarget().getClass().getName() + " was called.");
return context.proceed();
}
@PostConstruct
private void construct(InvocationContext context) {
System.out.println("@Postconstruct of " +
context.getMethod().getDeclaringClass().getName() + " started.");
}
}
因此,我想为JSF托管bean添加简单的日志记录:
@ManagedBean(name = "departmentRootMB")
@ViewScoped
@WithLog
public class DepartmentRootMB implements Serializable {
long serialVersionUID = 0L;
// . . . properties, methods
}
我读到,要启用拦截器,我需要创建beans.xml
。我在WEB-INF
目录下创建了一个:
<?xml version="1.0" encoding="UTF-8"?>
<beans xmlns="http://xmlns.jcp.org/xml/ns/javaee"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://xmlns.jcp.org/xml/ns/javaee http://xmlns.jcp.org/xml/ns/javaee/beans_1_1.xsd"
bean-discovery-mode="annotated">
<interceptors>
<class>ru.edu.pgtk.weducation.interceptors.LogInterceptor</class>
</interceptors>
</beans>
我重建项目,没有效果。错在哪里?我做错了什么?我使用的是带有标准组件(WELD、EclipseLink、JSF 2.2.7)的glassfish 4.1
感谢您的宝贵时间,并致以良好的问候。
拦截器不能与JSF托管bean一起工作?
正确的。
用CDI bean管理工具替换JSF bean管理工具。
即用@Named
和友元代替@ManagedBean
和友元。无论如何,JSF bean管理工具将在未来的Java EE版本中被弃用,取而代之的是CDI。现在您可以迁移了,这是一个很好的机会。
参见:
- 支持bean (@ManagedBean)或CDI bean (@Named)?