Jboss5上访问EJB时出错
1、**ejb not bound
在网上找到一个解释,解决了问题。如下:
异常信息:javax.naming.NamingException:**ejb not bound ...
问题原因:
2、javax.naming.NameNotFoundException: Remote not bound
郁闷了很久,竟然是JNDI名称写错了,写成了:
questionService = (QuestionService)ctx.lookup("CProject/QuestionServiceBean/Remote");
把remote的第一个字母大写了!
3、java.lang.reflect.UndeclaredThrowableException
这个是由于实体Bean没有继承可序列化类引起的。