Posted on 2006-07-21 06:34
Earth 閱讀(308)
評論(0) 編輯 收藏 所屬分類:
Java
如果DB不一到,記得要修改兩個地方,
default/deploy/xxx-ds.xml
persistence.xml中的hibernate.dialect
Sessionbean的JNDI的名字規則是:EAR_NAME + "/" + BeanName + "/" + local/remote,因此JNDI的名字根據Project是否以EAR方式發布相關。
exception
javax.ejb.EJBException: Invalid invocation of local interface (null container)
Hello,
You're trying to get a local EJB to your client (which is out of the server jvm so not local to the server).
You must use @Remote instead of @Local of your business Interface Calculator.
Good luck !