GlassFish – interceptor problem in Java ee7

I am testing / switching to Java ee7 (GlassFish 4). One problem I encounter is the interceptor. Whenever I try to run the project, I will receive the following error

I'm looking at 1.3 of the CDI 1.1 specification Section 6, it doesn't seem to have changed, so what did I do wrong?

This is the code I'm using;

@InterceptorBinding
@Retention(RetentionPolicy.RUNTIME)
@Target({ElementType.TYPE,ElementType.METHOD})
public @interface Secured {}
@Secured
@Interceptor
public class SecuredInterceptor implements Serializable
{
    @AroundInvoke
    public Object interceptSecured(InvocationContext ic) throws Exception
    {
        // Do Stuff
    }
}
<?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>com.xxxxxx.security.SecuredInterceptor</class>
    </interceptors>
</beans>

Solution

From section 12.1 of the CDI specification

Your version 1.1 beans XML has bean discovery mode = "annotated" Add beans XML is changed to bean discovery mode = "all", my guess is that it will be like from beans XML and use the old namespace, just like in CDI 1.0

The content of this article comes from the network collection of netizens. It is used as a learning reference. The copyright belongs to the original author.
THE END
分享
二维码
< <上一篇
下一篇>>