麻烦问下,谁知道使用tomcat数据源,提示没有绑定名称。这是为什么
<Context>
<ResourceLink global="mySource" name="mySource" type="javax.sql.DataSource"/>
<Resource name="mySource"
auth="Container"
type="javax.sql.DataSource"
username="root"
password="root"
driverClassName="com.mysql.jdbc.Driver"
url="jdbc:mysql:///day11"
maxActive="8"
maxIdle="4"/>
</Context>
这是web.xml里面的
<resource-ref>
<description>DB Connection</description>
<res-ref-name>mySource</res-ref-name>
<res-type>javax.sql.DataSource</res-type>
<res-auth>Container</res-auth>
</resource-ref>
代码是:
Context initCtx = new InitialContext();
Context jndi = (Context) initCtx.lookup("java:comp/env");
DataSource source = (DataSource) jndi.lookup("mySource");
Connection conn = source.getConnection();
报错信息:
javax.naming.NameNotFoundException: Name mySource is not bound in this Context
at org.apache.naming.NamingContext.lookup(NamingContext.java:770)
at org.apache.naming.NamingContext.lookup(NamingContext.java:153)
at org.apache.naming.factory.ResourceLinkFactory.getObjectInstance(ResourceLinkFactory.java:9
哪位大神知道这是怎么回事啊,该怎么解决啊
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
我配置的是web工程下的这个web.xml,也需要配置tomcat里面的么?应该不用吧?
javax.naming.NameNotFoundException: Name jdbc is not bound in this Context 错误的解决方法:
以下红色部分是网上的普遍解答:
web工程下的,WEB-INF下的web.xml添加这一段:
<resource-ref>
<description>DB Connection</description>
<res-ref-name>JDBC/TestDB</res-ref-name>
<res-type>javax.sql.DataSource</res-type>
<res-auth>Container</res-auth>
</resource-ref>
相对应的jsp或者java代码应该为:
DataSource ds = (DataSource) ctx.lookup("java:comp/env/JDBC/TestDB");
或者
Context envCtx = (Context) ctx.lookup("java:comp/env");
DataSource ds = (DataSource) ctx.lookup("JDBC/TestDB");
不配置,或者配置错误,就会出现:Name jdbc is not bound in this Context,如果配置成 <res-ref-name>JDBC/Test222DB</res-ref-name>,则会报Name jdbc is not bound in this Context。
如果这里的配置对了,可能还会报其他错误,但至少不会报这个错了。
这个是没错的,但是如果你是用的Eclipse中的Tomcat运行的话,记得要配置的并不是Tomcat目录下Conf文件夹里面的web.xml,而是Eclipse项目中Server文件夹下的对应项目的web.xml文件。