关于在myeclipse中用jsp访问实体bean的一个问题的解决:
利用下面的代码访问:
<%@ page language="java" pageEncoding="GBK"%>
<html>
<head>
<title>test</title>
</head>
<body>
<%
javax.naming.InitialContext ctx = new javax.naming.InitialContext();
entity.UsertableFacadeRemote dao = (entity.UsertableFacadeRemote)
ctx.lookup("UsertableFacade/remote");
entity.Usertable entity = new entity.Usertable();
entity.setUsername("tttt");
entity.setPassword("ejb");
dao.save(entity);
ctx.close();
%>
</body>
</html>
报错:
Exception sending context initialized event to listener instance of class。。。。。
解决方法:
在MyEclipse 6.0/myeclipse/eclipse安装路径下找到commons-pool.jar 1.3 将其放入项目的lib下就可解决了