应对Name jdbc is not bound in this Context-----------我的一个总结
Posted rongyongfeikai2
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了应对Name jdbc is not bound in this Context-----------我的一个总结相关的知识,希望对你有一定的参考价值。
你肯定被这个报错惹得焦头烂额了,而且网上的所有回答都是如出一辙,你检查配置是否有问题。
你认真的看了自己的context.xml和web.xml中的配置,觉得它们正确无误。而错误依然不能消除,那么你看这篇文章就对了,也许它会是你的指路明灯。
你看一下自己的JSP文件,是否有这样一句:
DataSource ds=(DataSource)initContext.lookup("java:/comp/env/jdbc/xinabai");
请将它改为:
Context initContext = new InitialContext();
Context envContext = (Context)initContext.lookup("java:/comp/env");
DataSource ds = (DataSource)envContext.lookup("jdbc/xinbai");
虽然无数本书和帖子告诉你,这两个方法相同。但是,很明显,前一种会在某种情况下产生Name jdbc is not bound in this Context的错误。
具体原因我不清楚,希望知道原因的高人可以告知一二。
以上是关于应对Name jdbc is not bound in this Context-----------我的一个总结的主要内容,如果未能解决你的问题,请参考以下文章
数据连接池配置错误,javax.naming.NameNotFoundException: Name jdbc is not bound in this Context
Tomcat上配置连接池{ connect error=Name [jdbc/OracleDB] is not bound in this Context. Unable to find [jdbc]
IDEA 中使用 Vue 提示 namespace is not bound
Inferred type 'S' for type parameter 'S' is not within its bound
ssm-异常:The prefix "aop" for element "aop:config" is not bound.
Spring配置文件标签报错:The prefix "XXX" for element "XXX:XXX" is not bound. .