我最近在学习JavaEE 7。当我尝试从单独的jar文件中注入一个ejb时,我遇到了问题。
我的代码就像
@Stateless
public class HelloService {
public String hello(String name) {
return "Hello " + name;
}
}
HelloService位于独立项目中,我已将其作为ejb文件发布到glassfish4服务器中。
然后我有JSF项目,现在我只有一个支持bean
@Model
public class IndexBean {
@Inject
private HelloService helloService;
public String getName() {
return helloService.hello("World");
}
}
构建JSF项目之后。我把它发布到同一个glassfish4服务器上。但是在我的JSF项目中,它无法从其他jar文件中注入HelloService bean。
我试图在HelloService类上添加@Remote,它仍然不能注入。
我有3个pom文件。
父项目:
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
<modelVersion>4.0.0</modelVersion>
<groupId>org.chris.sample</groupId>
<artifactId>javaee7-samples</artifactId>
<version>1.0.0</version>
<packaging>pom</packaging>
<properties>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding>
</properties>
<dependencies>
<dependency>
<groupId>javax</groupId>
<artifactId>javaee-api</artifactId>
<version>7.0</version>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>org.apache.derby</groupId>
<artifactId>derby</artifactId>
<version>10.10.1.1</version>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
<version>4.11</version>
<scope>test</scope>
</dependency>
</dependencies>
<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
<version>3.1</version>
<configuration>
<source>1.7</source>
<target>1.7</target>
</configuration>
</plugin>
</plugins>
</build>
<modules>
<module>javaee7-jsf</module>
<module>javaee7-ejb</module>
</modules>
</project>
JSF项目:
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
<modelVersion>4.0.0</modelVersion>
<parent>
<groupId>org.chris.sample</groupId>
<artifactId>javaee7-samples</artifactId>
<version>1.0.0</version>
</parent>
<artifactId>javaee7-jsf</artifactId>
<packaging>war</packaging>
<dependencies>
<dependency>
<groupId>org.chris.sample</groupId>
<artifactId>javaee7-ejb</artifactId>
<type>jar</type>
<version>1.0.0</version>
<scope>provided</scope>
</dependency>
</dependencies>
<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-war-plugin</artifactId>
<version>2.4</version>
<configuration>
<failOnMissingWebXml>false</failOnMissingWebXml>
</configuration>
</plugin>
</plugins>
</build>
</project>
EJB项目:
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
<modelVersion>4.0.0</modelVersion>
<parent>
<groupId>org.chris.sample</groupId>
<artifactId>javaee7-samples</artifactId>
<version>1.0.0</version>
</parent>
<artifactId>javaee7-ejb</artifactId>
<packaging>ejb</packaging>
</project>
答案 0 :(得分:2)
看看这里:https://stackoverflow.com/a/6969520/3431758
您无法从其他模块(在您的情况下为javaee7-jsf)中使用对EJB的本地访问。如果要使用本地访问EJB创建EAR项目或在WAR文件中包含EJB(通过跳过javaee7-samples模块的pom.xml中的<scope>provided</scope>
)。