zoukankan      html  css  js  c++  java
  • javax.naming.NameNotFoundException: Name jdbc is not bound in this Context

       这个错误的原因是没有项目使用到了Tomcat中配置的数据源(但是你本地没有配置),关于什么是JNDI看这篇文章就够了®

      今天导入一个项目(比较老的),在本地运行时报错;

           

    Cannot resolve reference to bean 'apwhatsupDS1' while setting bean property 'dataSource'; nested exception is org.springframework.beans.factory.BeanCreationException: Error creating bean with name 'apwhatsupDS1' defined in class path resource [applicationContext-report-ap.xml]: Invocation of init method failed; nested exception is javax.naming.NameNotFoundException: Name jdbc is not bound in this Context

      重点是这个地方的错误:Invocation of init method failed; nested exception is javax.naming.NameNotFoundException: Name jdbc is not bound in this Context

      找到这个注入bean的地方;

      这个问题只需要在Tomcat中配置JNDI数据源即可;

      看下面的步骤即可:

        1.在IDE开发工具里面引用的tomcat中去配置server.xml和content.xml文件

        2.在server.xml中配置Resouce 

        3.在content.xml中配置

     

    打赏

  • 相关阅读:
    JavaScript基础
    Dao的扩展
    错题解析
    实现windows程序的数据绑定
    C#第三章
    第二章
    初始windows程序
    使用ADO.NET查询和操作数据
    使用ADO.NET访问数据库
    4.计算机层次与编程语言
  • 原文地址:https://www.cnblogs.com/gqzdev/p/db-jndi.html
Copyright © 2011-2022 走看看