我正在尝试使用context.xml文件使用Servlet连接mysql数据库。 通过参考网站上提供的示例:
http://viralpatel.net/blogs/2009/09/database-connection-pooling-tomcat-eclipse-db.html
但我得到例外: javax.naming.NameNotFoundException:jdbc未绑定
之后我在web.xml中添加了标签,然后它也没有工作,并给出了另一个例外:
部署期间出错; - 嵌套throwable:(javax.naming.NamingException:resource-ref:jdbc / mytest没有有效的JNDI绑定。检查jboss-web / resource-ref。)
(注意:mytest是我的数据库名称)
其他详细信息:我已添加配置详细信息以供参考 context.xml中:
<?xml version="1.0" encoding="UTF-8"?>
<Context>
<!-- Specify a JDBC datasource -->
<Resource name="jdbc/mytest" auth="Container"
type="javax.sql.DataSource" username="root" password="mysql"
driverClassName="com.mysql.jdbc.Driver"
url="jdbc:mysql://localhost:3306/mytest"
maxActive="10" maxIdle="4" />
</Context>
的web.xml:
<?xml version="1.0" encoding="UTF-8"?>
<web-app xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://java.sun.com/xml/ns/javaee" xmlns:web="http://java.sun.com/xml/ns/javaee/web-app_2_5.xsd" xsi:schemaLocation="http://java.sun.com/xml/ns/javaee http://java.sun.com/xml/ns/javaee/web-app_2_5.xsd" id="WebApp_ID" version="2.5">
<display-name>testjdbc</display-name>
<resource-ref>
<description>DB Connection</description>
<res-ref-name>jdbc/mytest</res-ref-name>
<res-type>javax.sql.DataSource</res-type>
<res-auth>Container</res-auth>
</resource-ref>
<servlet>
<description></description>
<display-name>TestServlet</display-name>
<servlet-name>TestServlet</servlet-name>
<servlet-class>com.mytest.TestServlet</servlet-class>
</servlet>
<servlet-mapping>
<servlet-name>TestServlet</servlet-name>
<url-pattern>/TestServlet</url-pattern>
</servlet-mapping>
</web-app>
servlet.java:
public void init() throws ServletException
{
try
{
// Get DataSource
Context initContext = new InitialContext();
Context envContext = (Context)initContext.lookup("java:/jdbc/mytest");
dataSource = (DataSource)envContext.lookup("jdbc/mytest");
}
catch (NamingException e)
{
e.printStackTrace();
}
}
答案 0 :(得分:1)
您提到的教程适用于Tomcat,但您现在使用的是jboss-web。
每个服务器配置JNDI数据源的方式可能略有不同。对于jboss-web,您可以参考this。
答案 1 :(得分:0)
使用name =&#34; jdbc:testdb&#34;定义数据源资源时在context.xml中,您必须在InitialContext.lookUp()方法中查找相同的名称。数据库名称(mytest)应在连接URL中给出。