[代码记录生活]Name evn is not bound in this Context 解决方案

在META-INF下配置局部context.xml , 该格式为连接池使用者,固定格式,大小必须一致。
<Context>
    <!-- Default set of monitored resources -->
    <WatchedResource>WEB-INF/web.xml</WatchedResource>
<Resource name="jdbc/datasource" auth="Container" 
        type="javax.sql.DataSource" maxActive="8"
	maxIdle="3" maxWait="1000"
	username="sa" password="sa"
	driverClassName = "com.microsoft.sqlserver.jdbc.SQLServerDriver"
	url = "jdbc:sqlserver://127.0.0.1:1433;databaseName=InterComestibleSystem"/>
</Context>

配置web.xml ,格式需要一致
       	<resource-ref>
	   <res-ref-name>jdbc/datasource</res-ref-name>	  	 
	   <res-type>javax.sql.DataSource</res-type>
	   <res-auth>Container</res-auth>
	</resource-ref>


以上配置完毕后:DBUtil类,如果还报该异常,那就一定是lookup()这里出问题了。
        Context ct = new InitialContext();
	DataSource data =(DataSource)ct.lookup("java:comp/env/jdbc/datasource");
	con = data.getConnection();


("java:comp/env/")这3个是固定格式,今天我将各种方式都试了一便,还是报错,找了我1个小时,真是气的慌,终于被我发现了,原来env 写成了evn 果然敲代码快点还是不行啊。

希望能对大家有所帮助。

你可能感兴趣的:(jsp,jdbc)