javax.naming.NameNotFoundException: Name jdbc is not bound in this Context

      很久没写web项目,结果出现如上错误,原因是在context.xml配置数据源后,没有在web.xml里添加引用。context.xml里的配置是:
        username="test" password="test" driverClassName="com.mysql.jdbc.Driver" url="jdbc:mysql://127.0.0.1:3306/test" />
web.xml需要加上:
 
      My DataSource Reference
      jdbc/security
      javax.sql.DataSource
      Container
      Shareable
 

你可能感兴趣的:(【Java】基础)