Hibernate 通过 jndi 连接 Tomcat

第一:先下载 Tomcat 6.0.29
http://apache.freelamp.com/tomcat/tomcat-6/v6.0.29/bin/apache-tomcat-6.0.29.zip

解压到: D:\tomcat6.0

第二:配置 jndi:
    在 D:\tomcat6.0\conf 下编辑 context.xml 文件
     1. 数据源 SqlServer
      <Resource name="jdbc/sqlserver" auth="Container" type="javax.sql.DataSource"
               maxActive="100" maxIdle="30" maxWait="10000"
               username="sa" password="" driverClassName="com.microsoft.jdbc.sqlserver.SQLServerDriver"
               url="jdbc:microsoft:sqlserver://localhost:1433;databaseName=tempdb;selectMethod=cursor"/>
   
     2. 数据源 MySql
     <Resource name="jdbc/test" auth="Container" type="javax.sql.DataSource"
               maxActive="100" maxIdle="30" maxWait="10000"
               username="root" password="root" driverClassName="com.mysql.jdbc.Driver"
               url="jdbc:mysql://localhost:3306/test"/>

第三: 在工程中的 web.xml 文件中加入:
     <description>MySQL Test App</description>
<resource-ref>
<description>DB Connection</description>
<res-ref-name>jdbc/psssfj</res-ref-name>
<res-type>javax.sql.DataSource</res-type>
<res-auth>Container</res-auth>
</resource-ref>

第四:修改 hibernate.cfg.xml 文件
     <session-factory>
<property name="connection.datasource">java:comp/env/jdbc/test</property>

</session-factory>

你可能感兴趣的:(apache,tomcat,mysql,Hibernate,jdbc)