我正在使用EJB3.0 jboss5.1AS
我有一些奇怪的问题,之前没有发生过。 我正在尝试测试我的ejb无状态bean。
我曾经在我耳边的一个servlet(在WAR项目中)模拟ejb调用,一切正常。
现在我们尝试通过执行EJB调用来通过外部tomcat服务器上的EAR外部的servlet来测试这个ejb
突然间我得到了这个例外:
7 May 12 13:13:11, ERROR DispactherBean:dispatchMsg:113 Exception. The error msg=Failed to create timer
javax.ejb.EJBException: Failed to create timer
at org.jboss.ejb.txtimer.TimerServiceImpl.createTimer(TimerServiceImpl.java:263)
at org.jboss.ejb.txtimer.TimerServiceImpl.createTimer(TimerServiceImpl.java:171)
at org.jboss.as.ejb3.timerservice.TimerServiceFacade.createTimer(TimerServiceFacade.java:83)
at DispactherBean.dispatchMsg(DispactherBean.java:94)
at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39)
at
...
我以这种方式触发我的计时器:
@Stateless
@Remote(
{ DispactherBeanRemote.class })
@RemoteBinding(jndiBinding = "DispactherBean")
public class DispactherBean implements DispactherBeanRemote, Serializable
{
private static final long serialVersionUID = 1L;
private final static Logger logger = Logger.getLogger(DispactherBean.class);
@Resource
private TimerService timerService;
public void someMethod()
{
timerService.createTimer(MomConstants.TRX_TIMEOUT_PERIOD,"test");
}
..
}
我以这种方式从tomcat / standalone调用这个bean:
Properties p = new Properties();
p.put(Context.INITIAL_CONTEXT_FACTORY, "org.jnp.interfaces.NamingContextFactory");
p.put(Context.URL_PKG_PREFIXES, "org.jnp.interfaces");
p.put(Context.PROVIDER_URL, "jboss.ip:1099");
InitialContext context = new InitialContext(p);
String lookupStr = "Mom/DispactherBean/remote-mom.beans.DispactherBeanRemote";
DispactherBeanRemote dispactherBean = (DispactherBeanRemote) context.lookup(lookupStr);
dispactherBean.someMethod();
}
catch (Exception e)
{
e.printStackTrace();
}
答案 0 :(得分:0)
需要将所有jboss客户端jar添加到tomcat / jboss端。