参考博客:https://blog.csdn.net/lvhaoguang0/article/details/80945569

1、错误

javax.naming.NameNotFoundException: 名称[jdbc/HelixDB]未在此上下文中绑定。找不到[jdbc]。
	at org.apache.naming.NamingContext.lookup(NamingContext.java:833)
	at org.apache.naming.NamingContext.lookup(NamingContext.java:160)
	at org.apache.naming.NamingContext.lookup(NamingContext.java:843)

2、解决方案

检查WEB-INF/web.xml文件,有没有绑定对应的资源
例如添加如下代码

  <resource-ref>
	  <description>jdbc/HelixDB</description>
	  <res-ref-name>jdbc/HelixDB</res-ref-name>  
	  <res-type>javax.sql.DataSource</res-type>
	  <res-auth>Container</res-auth>
 </resource-ref>
Logo

华为开发者空间,是为全球开发者打造的专属开发空间,汇聚了华为优质开发资源及工具,致力于让每一位开发者拥有一台云主机,基于华为根生态开发、创新。

更多推荐