关于出现Name jdbc is not bound in this Context错误的解决

时间:2021-10-31 01:08:07

 Name jdbc is not bound in this Context错误是因为没找到相应的连接配置

 

我的暂时的解决办法是,增加红色字体部分,

 

String jndi =(String) props.get("datasource");

jndi="java:comp/env/"+jndi;

  DataSource   ds = (DataSource) new InitialContext().lookup(jndi);