java配置连接池时不能得到一个DataSource实例,高手请进!
这是Tomcat的context.xml里配置的数据源:<Resourcename="jdbc/news"auth="Container"type="javax.sql....
这是Tomcat的context.xml里配置的数据源:
<Resource name="jdbc/news" auth="Container" type="javax.sql.DateSource" maxActive="100" maxIdle="30" maxWait="10000" username="max" password="superman"
driverClassName="oracle.jdbc.driver.OracleDriver" url="jdbc:oracle:thin:@localhost:1521:orcl"/>
这是在web.xml里配置的数据源引用:
<resource-ref>
<description>A NEW DATASOURCE</description>
<res-ref-name>jdbc/news</res-ref-name>
<res-type>javax.sql.DataSource</res-type>
<res-auth>Container</res-auth>
</resource-ref>
创建Connection对象的代码如下:
Context ctx = new InitialContext();
javax.sql.DataSource ds = (javax.sql.DataSource)ctx.lookup("java:comp/env/jdbc/news");
conn = ds.getConnection();
这是控制台报错的提示:
javax.naming.NamingException: Cannot create resource instance
求解啊!!!!!!!!!!!!!!!!!!!!!!!! 展开
<Resource name="jdbc/news" auth="Container" type="javax.sql.DateSource" maxActive="100" maxIdle="30" maxWait="10000" username="max" password="superman"
driverClassName="oracle.jdbc.driver.OracleDriver" url="jdbc:oracle:thin:@localhost:1521:orcl"/>
这是在web.xml里配置的数据源引用:
<resource-ref>
<description>A NEW DATASOURCE</description>
<res-ref-name>jdbc/news</res-ref-name>
<res-type>javax.sql.DataSource</res-type>
<res-auth>Container</res-auth>
</resource-ref>
创建Connection对象的代码如下:
Context ctx = new InitialContext();
javax.sql.DataSource ds = (javax.sql.DataSource)ctx.lookup("java:comp/env/jdbc/news");
conn = ds.getConnection();
这是控制台报错的提示:
javax.naming.NamingException: Cannot create resource instance
求解啊!!!!!!!!!!!!!!!!!!!!!!!! 展开
展开全部
javax.sql.DataSource ds = (javax.sql.DataSource)ctx.lookup("java:comp/env/jdbc/news");
把这句分开写看看。
Context ic = new InitialContext();
Context env = (Context) ic.lookup("java:comp/env");
DataSource ds = (DataSource) env.lookup("jdbc/news");
把这句分开写看看。
Context ic = new InitialContext();
Context env = (Context) ic.lookup("java:comp/env");
DataSource ds = (DataSource) env.lookup("jdbc/news");
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询