1

我使用 MySQL 数据库和 Hibernate 在 Netbeans 6.5 中开发了一个 Java Web 应用程序。开发数据库服务器和开发应用程序服务器(Tomcat 6)都驻留在我的开发机器上。一切正常;应用程序正确地从数据库中提取数据。

现在,我准备将其移至生产服务器。同样,数据库服务器和应用程序服务器位于同一台机器上。我部署了 WAR 文件并尝试访问应用程序;我可以访问静态页面,但使用数据库的 Servlet 会出现异常:

org.hibernate.exception.JDBCConnectionException: Cannot open connection

我很确定这个问题与 Tomcat 不知道数据源有关。似乎 Netbeans 为我处理了这个问题。我读到我可能需要添加一个 RESOURCE 条目,所以我从这个站点获得了一些建议,它给了我一个 context.xml:

<?xml version="1.0" encoding="UTF-8"?>
<Context antiJARLocking="true" path="/EmployeeDirectory">
     <Resource   
          name="jdbc/employeedirectory"  auth="Container"
          type="javax.sql.DataSource"    username="EmployeeDir"
          password="EmployeeDirectory"   driverClassName="com.mysql.jdbc.Driver"
          url="jdbc:mysql://127.0.0.1:3306/EmployeeDirectory?autoReconnect=true"
          maxActive="15"                 maxIdle="7"
          validationQuery="Select 1" />
</Context>

的 web.xml:

<?xml version="1.0" encoding="UTF-8"?>
<web-app version="2.5" xmlns="http://java.sun.com/xml/ns/javaee"  
    xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" 
    xsi:schemaLocation="http://java.sun.com/xml/ns/javaee http://java.sun.com/xml/ns/javaee/web-app_2_5.xsd">
    <!-- Omit Servlet Info -->
    <resource-ref>
        <description>DB Connection</description>
        <res-ref-name>jdbc/employeedirectory</res-ref-name>
        <res-type>javax.sql.DataSource</res-type>
        <res-auth>Container</res-auth>
    </resource-ref>
</web-app>

和一个hibernate.cfg.xml:

<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE hibernate-configuration PUBLIC "-//Hibernate/Hibernate Configuration DTD 3.0//EN" "http://hibernate.sourceforge.net/hibernate-configuration-3.0.dtd">
<hibernate-configuration>
    <session-factory>
        <property name="hibernate.connection.datasource">java:comp/env/jdbc/employeedirectory</property>
        <property name="hibernate.hbm2ddl.auto">update</property>
        <property name="hibernate.dialect">org.hibernate.dialect.MySQLDialect</property>
        <!-- Omit other Mappings -->
        <mapping class="EmployeeDirectory.data.PhoneNumber" resource="EmployeeDirectory/data/PhoneNumber.hbm.xml"/>
    </session-factory>
</hibernate-configuration>

现在,我得到一个org.hibernate.HibernateException: Could not find datasource错误。

我是否走上了从开发到生产的正确道路?我错过了什么?

4

3 回答 3

1

我认为你在正确的轨道上。我将首先设置数据源并在hibernate之外验证它。这是一篇很好的文章:http: //tomcat.apache.org/tomcat-6.0-doc/jndi-resources-howto.htm和一些例子:http ://www.mbaworld.com/docs/jndi-数据源示例-howto.html

然后,我将配置 hibernate 以使用 datsource。通过查看您的hibernate.cfg.xml文件,我认为您应该尝试更改hibernate.connection.datasourcejdbc/employeedirectory

于 2009-05-13T04:02:29.643 回答
1

jndi 数据源应在 /tomcat/server.xml 中定义,请参阅Tomcat JNDI Datasource how-to而不是在 webapp/context.xml

于 2009-05-13T10:48:49.697 回答
0

Tomcat 6 要求您将资源标记添加到 context.xml,而不是 server.xml。你可以在 Tomcat 5.x 中。我在单独安装的 Tomcat 中运行良好,但我仍在尝试在 NB 6.5 中使用连接池。

同一个 Apache 站点有一个指向 JNDI 的 Tomcat 6 版本的链接,它告诉您将资源标记添加到 context.xml。

于 2009-05-27T05:12:07.673 回答