如何使用 jar 依赖项在 Glassfish 中部署 EJB 模块
How to deploy EJB module in Glassfish with jar dependencies
我有一个 Maven EJB 模块依赖于两个 SE 模块,一个是域实体,另一个是持久化实体。
<dependencies>
<dependency>
<groupId>com.mycompany.modules</groupId>
<artifactId>entities</artifactId>
<version>1.0-SNAPSHOT</version>
</dependency>
<dependency>
<groupId>com.mycompany.modules</groupId>
<artifactId>persistent-entities</artifactId>
<version>1.0-SNAPSHOT</version>
</dependency>
我构建了 EJB 模块,当我尝试在 glassfish 中部署 ejb-module.jar 时,我在引用依赖模块时遇到错误:
Grave: Class [ com/mycompany/entities/EDSesion ] not found. Error while loading [ class com.mycompany.ejb.dataAccess.GestorADSesion ]
Grave: Class [ com/mycompany/persistent/entities/TSesion ] not found. Error while loading [ class com.mycompany.ejb.converters.EDSesionConverter ]
Grave: Cannot resolve reference Local ejb-ref name=com.mycompany.ejb.dataAccess.GestorADSesion/eDSesionFConverter,Local 3.x interface =com.mycompany.ejb.converters.interfaces.EDSesionConverterLocal,ejb-link=null,lookup=,mappedName=,jndi-name=,refType=Session
Grave: Excepción al desplegar la aplicación [app-ejb-1.0]
Grave: Exception during lifecycle processing
java.lang.RuntimeException: Cannot resolve reference Local ejb-ref name=com.mycompany.ejb.dataAccess.GestorADAreaF/eDAreaFConverter,Local 3.x interface =com.mycompany.ejb.converters.interfaces.EDAreaFConverterLocal,ejb-link=null,lookup=,mappedName=,jndi-name=,refType=Session
注意:ED 代表域实体,T 代表持久化实体,Gestor 是class 将实体持久化到数据库,Converter 是class 将持久化实体转换为域实体。
Gestor 有一个本地接口
这是我在 ejb 模块的 pom 文件中构建的
<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
<version>3.1</version>
<configuration>
<source>1.8</source>
<target>1.8</target>
<compilerArguments>
<endorseddirs>${endorsed.dir}</endorseddirs>
</compilerArguments>
</configuration>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-ejb-plugin</artifactId>
<version>2.3</version>
<configuration>
<ejbVersion>3.1</ejbVersion>
</configuration>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-dependency-plugin</artifactId>
<version>2.6</version>
<executions>
<execution>
<phase>validate</phase>
<goals>
<goal>copy</goal>
</goals>
<configuration>
<outputDirectory>${endorsed.dir}</outputDirectory>
<silent>true</silent>
<artifactItems>
<artifactItem>
<groupId>javax</groupId>
<artifactId>javaee-endorsed-api</artifactId>
<version>7.0</version>
<type>jar</type>
</artifactItem>
</artifactItems>
</configuration>
</execution>
</executions>
</plugin>
</plugins>
</build>
也许您已经自己想通了,但是您的 EJB.jar
没有(而且永远不会)包含您的依赖项。
因此,您有两种选择:使用 EJB
模块和 entities/persistent-entities 模块构建 EAR
或使您的依赖项直接对容器可用。我更喜欢第一种方法。
我有一个 Maven EJB 模块依赖于两个 SE 模块,一个是域实体,另一个是持久化实体。
<dependencies>
<dependency>
<groupId>com.mycompany.modules</groupId>
<artifactId>entities</artifactId>
<version>1.0-SNAPSHOT</version>
</dependency>
<dependency>
<groupId>com.mycompany.modules</groupId>
<artifactId>persistent-entities</artifactId>
<version>1.0-SNAPSHOT</version>
</dependency>
我构建了 EJB 模块,当我尝试在 glassfish 中部署 ejb-module.jar 时,我在引用依赖模块时遇到错误:
Grave: Class [ com/mycompany/entities/EDSesion ] not found. Error while loading [ class com.mycompany.ejb.dataAccess.GestorADSesion ]
Grave: Class [ com/mycompany/persistent/entities/TSesion ] not found. Error while loading [ class com.mycompany.ejb.converters.EDSesionConverter ]
Grave: Cannot resolve reference Local ejb-ref name=com.mycompany.ejb.dataAccess.GestorADSesion/eDSesionFConverter,Local 3.x interface =com.mycompany.ejb.converters.interfaces.EDSesionConverterLocal,ejb-link=null,lookup=,mappedName=,jndi-name=,refType=Session
Grave: Excepción al desplegar la aplicación [app-ejb-1.0]
Grave: Exception during lifecycle processing
java.lang.RuntimeException: Cannot resolve reference Local ejb-ref name=com.mycompany.ejb.dataAccess.GestorADAreaF/eDAreaFConverter,Local 3.x interface =com.mycompany.ejb.converters.interfaces.EDAreaFConverterLocal,ejb-link=null,lookup=,mappedName=,jndi-name=,refType=Session
注意:ED 代表域实体,T 代表持久化实体,Gestor 是class 将实体持久化到数据库,Converter 是class 将持久化实体转换为域实体。 Gestor 有一个本地接口
这是我在 ejb 模块的 pom 文件中构建的
<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
<version>3.1</version>
<configuration>
<source>1.8</source>
<target>1.8</target>
<compilerArguments>
<endorseddirs>${endorsed.dir}</endorseddirs>
</compilerArguments>
</configuration>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-ejb-plugin</artifactId>
<version>2.3</version>
<configuration>
<ejbVersion>3.1</ejbVersion>
</configuration>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-dependency-plugin</artifactId>
<version>2.6</version>
<executions>
<execution>
<phase>validate</phase>
<goals>
<goal>copy</goal>
</goals>
<configuration>
<outputDirectory>${endorsed.dir}</outputDirectory>
<silent>true</silent>
<artifactItems>
<artifactItem>
<groupId>javax</groupId>
<artifactId>javaee-endorsed-api</artifactId>
<version>7.0</version>
<type>jar</type>
</artifactItem>
</artifactItems>
</configuration>
</execution>
</executions>
</plugin>
</plugins>
</build>
也许您已经自己想通了,但是您的 EJB.jar
没有(而且永远不会)包含您的依赖项。
因此,您有两种选择:使用 EJB
模块和 entities/persistent-entities 模块构建 EAR
或使您的依赖项直接对容器可用。我更喜欢第一种方法。