首先,问题是当我从其他 servlet 调用 ejb 时,ejb 始终为空。
我有一个在 jersey + spring 3.0.5 中开发的休息网络服务。以及用于服务的 EJB 3.1。
我已经将战争和罐子打包在耳朵里,所以我的应用程序看起来像(我使用 maven 进行依赖):
+ear
++war
++jar
我想知道如何从 war 文件中的类调用 jar 文件中的服务。据我记得是通过 JNDI 并且我需要公开 ejb api?我该怎么做?
我确定 EJB 已成功创建,因为我可以在服务器中看到这样的日志: EJB UserServiceBean 的便携式 JNDI 名称:[java:global/demo-cg-ear-0.0.1-SNAPSHOT/demo-cg-ejbs /UserServiceBean!com.demo.cg.service.user.UserServiceBeanLocal, java:global/demo-cg-ear-0.0.1-SNAPSHOT/demo-cg-ejbs/UserServiceBean]|#]
但问题是当我在 rest jersey servlet 中调用它时,它总是为空:
@Path("/payment")
@Stateless
public class PaymentService {
@Path("/payment")
@Stateless
public class PaymentService {
@EJB
private UserServiceBeanLocal userServiceBean;
@GET
@Path("/hello")
public Response savePayment() {
String result = userServiceBean.getName();
return Response.status(200).entity(result).build();
/* return Response.status(200).entity("hello edward").build(); */
}
}
我的 applicationContext.xml 文件
<context:annotation-config />
<context:component-scan base-package="com.sido" />
<context:property-placeholder location="WEB-INF/build.properties" />
<!-- <bean class="org.springframework.context.annotation.CommonAnnotationBeanPostProcessor">
<property name="alwaysUseJndiLookup" value="true" /> </bean> -->
<jee:jndi-lookup id="userServiceBean"
jndi-name="java:global/sido-cg-ear-0.0.1-SNAPSHOT/sido-cg-ejbs/UserServiceBean"
resource-ref="true" lookup-on-startup="true"
expected-type="com.sido.cg.service.user.UserServiceBeanLocal"
proxy-interface="com.sido.cg.service.user.UserServiceBeanLocal"></jee:jndi-lookup>
UserBean 类
@Interceptors(SpringBeanAutowiringInterceptor.class)
@Stateless
public class UserServiceBean implements UserServiceBeanLocal {
private String name;
public UserServiceBean() {
name = "edward";
}
@PostConstruct
private void init() {
name = "edward";
}
public String getName() {
return name;
}
public void setName(String name) {
this.name = name;
}
}
谢谢,
czetsuya