我是JNDI的新手,我正在尝试让我的数据库连接正常工作。到目前为止没有运气。 我要么得到一条消息说:“名称[java:comp / env]未绑定在此Context中。无法找到[java:comp]” 或者我收到了时间。
以下是有关我当前配置的信息。
Tomcat:Apache Tomcat / 7.0.29
JMV:1.7.0_06-b24
OS:Win 10 Pro
的Tomcat \ CONF \ web.xml中
<resource-ref>
<description>DB Connection</description>
<res-ref-name>jdbc/myDatabaseName</res-ref-name>
<res-type>javax.sql.DataSource</res-type>
<res-auth>Container</res-auth>
</resource-ref>
的Tomcat \ CONF \ context.xml中
<ResourceLink type="javax.sql.DataSource"
name="jdbc/localRemarket"
global="jdbc/remarket"
/>
我还尝试将资源放在context.xml中以确保它是可以找到的:
<Resource
type="javax.sql.DataSource"
name="jdbc/myDatabaseName"
factory="org.apache.tomcat.jdbc.pool.DataSourceFactory"
driverClassName="com.mysql.jdbc.Driver"
url="jdbc:mysql://localhost:3306/myDatabaseName"
username="myUsername"
password="myPassword"
maxActive="1500"
maxIdle="200"
maxwait="-1"
testOnBorrow="true"
testOnReturn="true"
testWhileIdle="true"
validationQuery="SELECT 1"
timeBetweenEvictionRunsMillis="2000"
minEvictableIdleTimeMillis="15000"
removeAbandoned="true"
removeAbandonedTimeout="5"
/>
的Tomcat \ CONF \ server.xml中
<Resource
type="javax.sql.DataSource"
name="jdbc/myDatabaseName"
factory="org.apache.tomcat.jdbc.pool.DataSourceFactory"
driverClassName="com.mysql.jdbc.Driver"
url="jdbc:mysql://localhost:3306/myDatabaseName"
username="myUsername"
password="myPassword"
maxActive="1500"
maxIdle="200"
maxwait="-1"
testOnBorrow="true"
testOnReturn="true"
testWhileIdle="true"
validationQuery="SELECT 1"
timeBetweenEvictionRunsMillis="2000"
minEvictableIdleTimeMillis="15000"
removeAbandoned="true"
removeAbandonedTimeout="5"
/>
java代码:
Connection conn;
public void openMyConnection() {
try {
Properties props = new Properties();
props.put("java.naming.factory.initial", "org.apache.naming.java.javaURLContextFactory");
InitialContext ctx = new InitialContext(props);
Context envCtx = (Context) ctx.lookup("java:comp/env"); // <<<<< PRB HERE
// error message : Name [java:comp/env] is not bound in this Context. Unable to find [java:comp]
org.apache.tomcat.jdbc.pool.DataSource ds = (org.apache.tomcat.jdbc.pool.DataSource) envCtx.lookup("jdbc/localDB");
conn = ds.getConnection();
} catch (Exception e) {
System.out.println(e.getMessage());
}
}
如果我改变
props.put("java.naming.factory.initial", "org.apache.naming.java.javaURLContextFactory");
的
props.put("java.naming.factory.initial", "org.jnp.interfaces.NamingContextFactory");
我明白了:
收到超时
我已经回顾了许多与JNDI相关的帖子,包括以下两个最有帮助的帖子:
http://tomcat.apache.org/tomcat-7.0-doc/jndi-datasource-examples-howto.html 和 https://examples.javacodegeeks.com/enterprise-java/tomcat/tomcat-datasource-jndi-example/
请注意,我读了How to configure jndi DataSource in Tomcat 7,但它没有为我的问题提供解决方案。
有人可以帮忙解决这个问题吗?
答案 0 :(得分:0)
当我直接在webapp(文件META-INF / context.xml)中配置数据源时,它对我有用:
<Context >
<Resource name="jdbc/EmployeeDB"
auth="Container"
type="javax.sql.DataSource"
username="scott"
password="tiger"
driverClassName="oracle.jdbc.OracleDriver"
url="jdbc:oracle:thin:@127.0.0.1:1521:mysid"
maxActive="8"
maxIdle="4"/>
</Context>