我长期以来一直遇到这个例外的问题。我正在尝试连接到外部mysql数据库,但我一直得到这个异常。我看了很多例子,但我还没有找到答案。这是我的代码,请记住这是我用于此的所有代码所以请说如果我错过了一些东西:
<?xml version="1.0" encoding="UTF-8"?>
<context>
<!-- Registers Database with JNDI Naming Service as a pooled DataSource -->
<Resource
name="jdbc/DBNAME"
auth="Container"
type="javax.sql.DataSource"
factory="org.apache.tomcat.jdbc.pool.DataSourceFactory"
testWhileIdle="true"
testOnBorrow="true"
testOnReturn="false"
validationQuery="SELECT 1"
validationInterval="30000"
timeBetweenEvictionRunsMillis="30000"
maxActive="100"
minIdle="10"
maxWait="10000"
initialSize="10"
removeAbandonedTimeout="60"
removeAbandoned="true"
logAbandoned="true"
minEvictableIdleTimeMillis="30000"
jmxEnabled="true"
jdbcInterceptors="org.apache.tomcat.jdbc.pool.interceptor.ConnectionState;org.apache.tomcat.jdbc.pool.interceptor.StatementFinalizer"
username="****"
password="********"
driverClassName="com.mysql.jdbc.Driver"
url="jdbc:mysql://****:3306/****"/>
</context>
这是我调用它的代码:
try
{
InitialContext ic = new InitialContext();
DataSource ds = (DataSource) ic.lookup("java:comp/env/jdbc/DBNAME");
Connection c = ds.getConnection();
return c;
}
catch(NamingException ne)
{
System.out.println(ne.toString());
return null;
}
catch (SQLException se)
{
System.out.println(se.toString());
return null;
}
用户名,密码,数据库网址和连接名称已经过编辑,但其余的都是正确的。
答案 0 :(得分:1)
来自Tomcat doc at:
http://tomcat.apache.org/tomcat-7.0-doc/jndi-resources-howto.html
尝试使用此代码:
Context ic= new InitialContext();
Context envCtx = (Context) ic.lookup("java:comp/env");
DataSource ds = (DataSource)envCtx.lookup("jdbc/DBNAME");
问候。