这是我的.ear文件包含的内容:
-- lib/other.jar
-- mesejbs.jar (with META-INF/ejb-jar.xml)
-- monwar.war (with WEB-INF/ejb-jar.xml)
这是 mesejbs.jar / META-INF / ejb-jar.xml :
<?xml version="1.0" encoding="UTF-8"?>
<ejb-jar xmlns="http://java.sun.com/xml/ns/javaee" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" version="3.0"
xsi:schemaLocation="http://java.sun.com/xml/ns/javaee http://java.sun.com/xml/ns/javaee/ejb-jar_3_0.xsd">
<interceptors>
<interceptor>
<interceptor-class>monpackage.ejb.log.LogInterceptor</interceptor-class>
</interceptor>
</interceptors>
<assembly-descriptor>
<interceptor-binding>
<ejb-name>*</ejb-name>
<interceptor-class>monpackage.ejb.log.LogInterceptor</interceptor-class>
</interceptor-binding>
</assembly-descriptor>
</ejb-jar>
成功调用了LogInterceptor 。
这是 monwar.war / WEB-INF / ejb-jar.xml :
<?xml version="1.0" encoding="UTF-8"?>
<ejb-jar xmlns="http://java.sun.com/xml/ns/javaee" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" version="3.0"
xsi:schemaLocation="http://java.sun.com/xml/ns/javaee http://java.sun.com/xml/ns/javaee/ejb-jar_3_0.xsd">
<interceptors>
<!-- default interceptors -->
<interceptor>
<interceptor-class>monpackage.web.interceptors.SecurityInterceptor</interceptor-class>
</interceptor>
</interceptors>
<assembly-descriptor>
<interceptor-binding>
<ejb-name>*</ejb-name>
<interceptor-class>monpackage.web.interceptors.SecurityInterceptor</interceptor-class>
</interceptor-binding>
</assembly-descriptor>
</ejb-jar>
但永远不会调用SecurityInterceptor!
如何激活SecurityInterceptor
?
答案 0 :(得分:0)
我理解我的问题。 战争中的ejb-jar.xml不是杜。这是正确的。 CDI没有为ejbModule和webModule启用。 以下是一些解释:https://issues.jboss.org/browse/WELD-778
所以我只是将我的ejbModule放在我的webModule中:
-- lib/other.jar
-- monwar.war (with WEB-INF/ejb-jar.xml)
-- WEB-INF/lib/mesejbs.jar (with META-INF/ejb-jar.xml)