Eclipse运行JSP文件出现javax.naming.NameNotFoundException: Name jdbc is not bound in this Context?

如题。请教怎么解决?还有个问题怎么解决java.lang.OutOfMemoryError:PermGenspace?<%@pagecontentType="text/h... 如题。请教怎么解决?
还有个问题怎么解决java.lang.OutOfMemoryError: PermGen space?
<%@ page contentType="text/html;charset=GB2312"%>
<%@ page import= "java.sql.* "%>
<%@ page import= "javax.naming.* "%>
<%
try{
Context initCtx = new InitialContext();
Context ctx = (Context) initCtx.lookup("java:comp/env");
//获取连接池对象
Object obj = (Object) ctx.lookup("jdbc/sqlserver");
//类型转换
javax.sql.DataSource ds = (javax.sql.DataSource)obj;
Connection conn = ds.getConnection();
Statement stmt = conn.createStatement();
String strSql = "SELECT * FROM userTable";
ResultSet rs = stmt.executeQuery(strSql);
展开
 我来答
niulu90
推荐于2016-10-03 · TA获得超过2472个赞
知道小有建树答主
回答量:1005
采纳率:0%
帮助的人:948万
展开全部
在web.xml中配置如下:
<resource-ref>
<res-ref-name>数据库名</res-ref-name>
<res-type>javax.sql.DataSource</res-type>
<res-auth>Container</res-auth>
<res-sharing-scope>Shareable</res-sharing-scope>
</resource-ref>
在tomcat中配置如下:
<Context path="/web的根目录名">
<Resource name="数据库名"
type="javax.sql.DataSource"
username="root"
password="root"
driverClassName="com.mysql.jdbc.Driver"
maxIdle="10"
url="jdbc:mysql://localhost:3306/tarena"
maxActive="10"/>
</Context>
cx924098
2010-07-13 · TA获得超过172个赞
知道小有建树答主
回答量:225
采纳率:0%
帮助的人:222万
展开全部
Name jdbc is not bound in this Context 连接池配错了!
java.lang.OutOfMemoryError: PermGen space 这个问题为内存溢出, 重启下服务就可以。
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
帐号已注销
2010-07-12 · TA获得超过647个赞
知道小有建树答主
回答量:214
采纳率:0%
帮助的人:120万
展开全部
数据库连接的驱动有问题。
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
wuyouqin2
2010-07-12 · TA获得超过281个赞
知道小有建树答主
回答量:311
采纳率:0%
帮助的人:302万
展开全部
如果你连接数据库的数据库名字没写错的话
应该是数据库驱动语句写的有问题吧
把你连接数据库的几句帖出来看看
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
收起 1条折叠回答
收起 更多回答(2)
推荐律师服务: 若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询

为你推荐:

下载百度知道APP,抢鲜体验
使用百度知道APP,立即抢鲜体验。你的手机镜头里或许有别人想知道的答案。
扫描二维码下载
×

类别

我们会通过消息、邮箱等方式尽快将举报结果通知您。

说明

0/200

提交
取消

辅 助

模 式