简述:

配置JNDI 查找Tomcat 中server.xml中定义的数据源

步骤:

1. 修改elipse的数据源server.xml

主要修改如下,

1. 添加下面这段Context文本 其中StudentManagementWeb是项目名称

  1. <Context docBase="StudentManagementWeb" path="/StudentManagementWeb" reloadable="true" source="org.eclipse.jst.jee.server:StudentManagementWeb">
  2. <Resource name="jdbc/smw" auth="Container" type="javax.sql.DataSource"
  3. maxActive="100" maxIdle="30" maxWait="10000"
  4. username="root" password="sql" driverClassName="com.mysql.jdbc.Driver"
  5. url="jdbc:mysql://localhost:3306/smw"/>
  6. </Context>

2.修改项目的web.xml文件

添加如下字段,用来查找数据源

  1. <resource-ref>
  2. <description>DB Connection</description>
  3. <res-ref-name>jdbc/smw</res-ref-name>
  4. <res-type>javax.sql.DataSource</res-type>
  5. <res-auth>Container</res-auth>
  6. </resource-ref>

3. 修改Hibernate配置文件,其中 mapping resourse 为自定义的model对象

  1. <session-factory>
  2. <property name="connection.datasource">java:comp/env/jdbc/smw</property>
  3. <property name="dialect">
  4. org.hibernate.dialect.MySQLDialect
  5. </property>
  6. <property name="show_sql">true</property><!-- show sql statement -->
  7. <!-- mapping files -->
  8. <mapping resource="smw/model/Student.hbm.xml"/>
  9. <mapping resource="smw/model/CourseSelection.hbm.xml"/>
  10. <mapping resource="smw/model/Course.hbm.xml"/>
  11. </session-factory>

4. Hibernate的session builder

  1. Configuration cfg = new Configuration().configure();
  2. factory = cfg.buildSessionFactory();   //build Session Factory

完成上述四步就做到了JNDI查找数据源的配置了

下面是四个文件的完整代码

server.xml

  1. <?xml version="1.0" encoding="UTF-8"?>
  2. <!--
  3. Licensed to the Apache Software Foundation (ASF) under one or more
  4. contributor license agreements.  See the NOTICE file distributed with
  5. this work for additional information regarding copyright ownership.
  6. The ASF licenses this file to You under the Apache License, Version 2.0
  7. (the "License"); you may not use this file except in compliance with
  8. the License.  You may obtain a copy of the License at
  9. http://www.apache.org/licenses/LICENSE-2.0
  10. Unless required by applicable law or agreed to in writing, software
  11. distributed under the License is distributed on an "AS IS" BASIS,
  12. WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
  13. See the License for the specific language governing permissions and
  14. limitations under the License.
  15. --><!-- Note:  A "Server" is not itself a "Container", so you may not
  16. define subcomponents such as "Valves" at this level.
  17. Documentation at /docs/config/server.html
  18. --><Server port="8005" shutdown="SHUTDOWN">
  19. <!--APR library loader. Documentation at /docs/apr.html -->
  20. <Listener SSLEngine="on" className="org.apache.catalina.core.AprLifecycleListener"/>
  21. <!--Initialize Jasper prior to webapps are loaded. Documentation at /docs/jasper-howto.html -->
  22. <Listener className="org.apache.catalina.core.JasperListener"/>
  23. <!-- Prevent memory leaks due to use of particular java/javax APIs-->
  24. <Listener className="org.apache.catalina.core.JreMemoryLeakPreventionListener"/>
  25. <!-- JMX Support for the Tomcat server. Documentation at /docs/non-existent.html -->
  26. <Listener className="org.apache.catalina.mbeans.ServerLifecycleListener"/>
  27. <Listener className="org.apache.catalina.mbeans.GlobalResourcesLifecycleListener"/>
  28. <!-- Global JNDI resources
  29. Documentation at /docs/jndi-resources-howto.html
  30. -->
  31. <GlobalNamingResources>
  32. <!-- Editable user database that can also be used by
  33. UserDatabaseRealm to authenticate users
  34. -->
  35. <Resource auth="Container" description="User database that can be updated and saved" factory="org.apache.catalina.users.MemoryUserDatabaseFactory" name="UserDatabase" pathname="conf/tomcat-users.xml" type="org.apache.catalina.UserDatabase"/>
  36. </GlobalNamingResources>
  37. <!-- A "Service" is a collection of one or more "Connectors" that share
  38. a single "Container" Note:  A "Service" is not itself a "Container",
  39. so you may not define subcomponents such as "Valves" at this level.
  40. Documentation at /docs/config/service.html
  41. -->
  42. <Service name="Catalina">
  43. <!--The connectors can use a shared executor, you can define one or more named thread pools-->
  44. <!--
  45. <Executor name="tomcatThreadPool" namePrefix="catalina-exec-"
  46. maxThreads="150" minSpareThreads="4"/>
  47. -->
  48. <!-- A "Connector" represents an endpoint by which requests are received
  49. and responses are returned. Documentation at :
  50. Java HTTP Connector: /docs/config/http.html (blocking & non-blocking)
  51. Java AJP  Connector: /docs/config/ajp.html
  52. APR (HTTP/AJP) Connector: /docs/apr.html
  53. Define a non-SSL HTTP/1.1 Connector on port 8080
  54. -->
  55. <Connector connectionTimeout="20000" port="8080" protocol="HTTP/1.1" redirectPort="8443"/>
  56. <!-- A "Connector" using the shared thread pool-->
  57. <!--
  58. <Connector executor="tomcatThreadPool"
  59. port="8080" protocol="HTTP/1.1"
  60. connectionTimeout="20000"
  61. redirectPort="8443" />
  62. -->
  63. <!-- Define a SSL HTTP/1.1 Connector on port 8443
  64. This connector uses the JSSE configuration, when using APR, the
  65. connector should be using the OpenSSL style configuration
  66. described in the APR documentation -->
  67. <!--
  68. <Connector port="8443" protocol="HTTP/1.1" SSLEnabled="true"
  69. maxThreads="150" scheme="https" secure="true"
  70. clientAuth="false" sslProtocol="TLS" />
  71. -->
  72. <!-- Define an AJP 1.3 Connector on port 8009 -->
  73. <Connector port="8009" protocol="AJP/1.3" redirectPort="8443"/>
  74. <!-- An Engine represents the entry point (within Catalina) that processes
  75. every request.  The Engine implementation for Tomcat stand alone
  76. analyzes the HTTP headers included with the request, and passes them
  77. on to the appropriate Host (virtual host).
  78. Documentation at /docs/config/engine.html -->
  79. <!-- You should set jvmRoute to support load-balancing via AJP ie :
  80. <Engine name="Catalina" defaultHost="localhost" jvmRoute="jvm1">
  81. -->
  82. <Engine defaultHost="localhost" name="Catalina">
  83. <!--For clustering, please take a look at documentation at:
  84. /docs/cluster-howto.html  (simple how to)
  85. /docs/config/cluster.html (reference documentation) -->
  86. <!--
  87. <Cluster className="org.apache.catalina.ha.tcp.SimpleTcpCluster"/>
  88. -->
  89. <!-- The request dumper valve dumps useful debugging information about
  90. the request and response data received and sent by Tomcat.
  91. Documentation at: /docs/config/valve.html -->
  92. <!--
  93. <Valve className="org.apache.catalina.valves.RequestDumperValve"/>
  94. -->
  95. <!-- This Realm uses the UserDatabase configured in the global JNDI
  96. resources under the key "UserDatabase".  Any edits
  97. that are performed against this UserDatabase are immediately
  98. available for use by the Realm.  -->
  99. <Realm className="org.apache.catalina.realm.UserDatabaseRealm" resourceName="UserDatabase"/>
  100. <!-- Define the default virtual host
  101. Note: XML Schema validation will not work with Xerces 2.2.
  102. -->
  103. <Host appBase="webapps" autoDeploy="true" name="localhost" unpackWARs="true" xmlNamespaceAware="false" xmlValidation="false">
  104. <!-- SingleSignOn valve, share authentication between web applications
  105. Documentation at: /docs/config/valve.html -->
  106. <!--
  107. <Valve className="org.apache.catalina.authenticator.SingleSignOn" />
  108. -->
  109. <!-- Access log processes all example.
  110. Documentation at: /docs/config/valve.html -->
  111. <!--
  112. <Valve className="org.apache.catalina.valves.AccessLogValve" directory="logs"
  113. prefix="localhost_access_log." suffix=".txt" pattern="common" resolveHosts="false"/>
  114. -->
  115. <Context docBase="StudentManagementWeb" path="/StudentManagementWeb" reloadable="true" source="org.eclipse.jst.jee.server:StudentManagementWeb">
  116. <Resource name="jdbc/smw" auth="Container" type="javax.sql.DataSource"
  117. maxActive="100" maxIdle="30" maxWait="10000"
  118. username="root" password="sql" driverClassName="com.mysql.jdbc.Driver"
  119. url="jdbc:mysql://localhost:3306/smw"/>
  120. </Context>
  121. </Host>
  122. </Engine>
  123. </Service>
  124. </Server>

web.xml

  1. <?xml version="1.0" encoding="UTF-8"?>
  2. <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">
  3. <display-name>StudentManagementWeb</display-name>
  4. <welcome-file-list>
  5. <welcome-file>Login.jsp</welcome-file>
  6. </welcome-file-list>
  7. <resource-ref>
  8. <description>DB Connection</description>
  9. <res-ref-name>jdbc/smw</res-ref-name>
  10. <res-type>javax.sql.DataSource</res-type>
  11. <res-auth>Container</res-auth>
  12. </resource-ref>
  13. <context-param>
  14. <param-name>log4jConfigLocation</param-name>
  15. <param-value>/WEB-INF/log4j.properties</param-value>
  16. </context-param>
  17. <!-- Define LOG4J Listener -->
  18. <listener>
  19. <listener-class>org.springframework.web.util.Log4jConfigListener</listener-class>
  20. </listener>
  21. <servlet>
  22. <!-- define the name of Servlet -->
  23. <servlet-name>dispatcherServlet</servlet-name>
  24. <!-- Servlet implementation class -->
  25. <servlet-class>org.springframework.web.servlet.DispatcherServlet</servlet-class>
  26. <!-- initialize the context -->
  27. <init-param>
  28. <param-name>contextConfigLocation</param-name>
  29. <!-- load configuration -->
  30. <param-value>/WEB-INF/applicationContext.xml</param-value>
  31. </init-param>
  32. <!-- set loading priority -->
  33. <load-on-startup>1</load-on-startup>
  34. </servlet>
  35. <servlet-mapping>
  36. <servlet-name>dispatcherServlet</servlet-name>
  37. <url-pattern>*.do</url-pattern>
  38. </servlet-mapping>
  39. </web-app>

hibernate.cfg.xml

  1. <?xml version='1.0' encoding='UTF-8'?>
  2. <!DOCTYPE hibernate-configuration PUBLIC
  3. "-//Hibernate/Hibernate Configuration DTD 3.0//EN"
  4. "http://hibernate.sourceforge.net/hibernate-configuration-3.0.dtd">
  5. <hibernate-configuration>
  6. <session-factory>
  7. <!--         <property name="dialect">Database Dialect
  8. org.hibernate.dialect.MySQLDialect
  9. </property>
  10. <property name="connection.url">URL of the database
  11. jdbc:mysql://localhost:3306/smw
  12. </property>
  13. <property name="connection.username">root</property>user name
  14. <property name="connection.password">sql</property>password
  15. <property name="connection.driver_class">connect driver
  16. com.mysql.jdbc.Driver
  17. </property> -->
  18. <property name="connection.datasource">java:comp/env/jdbc/smw</property>
  19. <property name="dialect">
  20. org.hibernate.dialect.MySQLDialect
  21. </property>
  22. <property name="show_sql">true</property><!-- show sql statement -->
  23. <!-- mapping files -->
  24. <mapping resource="smw/model/Student.hbm.xml"/>
  25. <mapping resource="smw/model/CourseSelection.hbm.xml"/>
  26. <mapping resource="smw/model/Course.hbm.xml"/>
  27. </session-factory>
  28. </hibernate-configuration>

HibernateUtil.java

    1. package smw.utils;
    2. import org.hibernate.Session;
    3. import org.hibernate.SessionFactory;
    4. import org.hibernate.cfg.Configuration;
    5. public class HibernateUtil {
    6. private static SessionFactory factory;
    7. static{
    8. try{
    9. Configuration cfg = new Configuration().configure();
    10. factory = cfg.buildSessionFactory();   //build Session Factory
    11. }catch(Exception e){
    12. System.out.println("static of HibernateUtil: " + e.getMessage());
    13. }
    14. }
    15. /**
    16. * @return SessionFactory
    17. */
    18. public static SessionFactory getSessionFactory(){
    19. return factory;
    20. }
    21. /**
    22. * get Session
    23. * @return Session
    24. */
    25. public static Session getSession(){
    26. return factory.openSession();
    27. }
    28. /**
    29. * close Session
    30. * @param session
    31. */
    32. public static void closeSession(Session session){
    33. if(session != null){
    34. if(session.isOpen()){
    35. session.close();
    36. }
    37. }
    38. }
    39. }

http://blog.csdn.net/anialy/article/details/8237448

Hibernate Tomcat JNDI数据源配置(转)的更多相关文章

  1. Linux - tomcat -jndi数据源配置

    Linux - tomcat -jndi数据源配置 tomcat/conf/context .xml 文件中修改如下 <Resource name="/jdbc/--" au ...

  2. Tomcat 6 部署工程总结,使用JNDI数据源配置

    工程需要用JNDI数据源方式部署到tomcat,参考网上文章后,经过配置测试,摸索出来了.     环境说明: 数据库:Oracle9i Web服务器:tomcat-6.0.33 tomcat启动方式 ...

  3. JNDI数据源配置

    一.数据源的由来 在Java开发中,使用JDBC操作数据库的四个步骤如下:   ①加载数据库驱动程序(Class.forName("数据库驱动类");) ②连接数据库(Connec ...

  4. mysql连接超时与jndi数据源配置

    昨天有运营说添加活动不能用了,我就看了一下后台日志,发现访问数据库是报错: at java.lang.Thread.run(Thread.java:722) Caused by: com.mysql. ...

  5. tomcat JNDI Resource 配置

    最近公司的项目慢慢开始向Maven项目迁移, 部分配置文件公共组也帮我们做了些改动,其中在spring的applicationContext.xml中看到了数据连接bean存在两个,一个是jndi 一 ...

  6. Tomcat JNDI + spring配置

    http://hi.baidu.com/lzpsky/item/f9a727ba823257eb4ec7fd27 一.简介 JNDI : Java Naming and Directory Inter ...

  7. Spring jndi数据源配置方法

    xml配置: <bean id="dataSource" class="org.springframework.jdbc.datasource.DriverMana ...

  8. tomcat jndi 数据源

    web.xml <!-- ================================================================================ --& ...

  9. tomcat下context.xml中JNDI数据源配置

    jndi(Java Naming and Directory Interface,Java命名和目录接口)是一组在Java应用中访问命名和目录服务的API.命名服务将名称和对象联系起来,使得我们可以用 ...

随机推荐

  1. URL加随机数的作用

    原文:URL加随机数的作用 大家在系统开发中都可能会在js中用到ajax或者dwr,因为IE的缓存,使得我们在填入相同的值的时候总是使用IE缓存,为了解决这个问题一般可以用一下方法:        1 ...

  2. 8592 KMP算法

    8592 KMP算法 时间限制:1000MS  内存限制:1000K 题型: 编程题   语言: 无限制 描写叙述 用KMP算法对主串和模式串进行模式匹配. 本题目给出部分代码.请补全内容. #inc ...

  3. UVa 474 - Heads / Tails Probability

    题目:计算1/(2^n)的值的前4为有效数字以及位数. 分析:数论,大整数.直接用数组模拟就可以. 说明:打表计算.查询输出. #include <iostream> #include & ...

  4. UVALive 5791 Candy's Candy 解题报告

    比赛总结 题目 题意: 有f种口味的糖果,现在要把每颗糖果分到一些packs里面去.packs分两种: flavored pack:只有一种口味. variety pack:每种口味都有. 求满足下列 ...

  5. 开源工具DbUtils的使用(数据库的增删改查)

    开源工具DbUtils的使用(数据库的增删改查) 一.DbUtils简介: DBUtils是apache下的一个小巧的JDBC轻量级封装的工具包,其最核心的特性是结果集的封装,可以直接将查询出来的结果 ...

  6. Xcode如何添加字体库--

    1.网上搜索字体文件(后缀名为.ttf,或.odf) 2.把字体库导入到工程的resouce中 3.在程序viewdidload中加载一下一段代码 NSArray *familyNames = [UI ...

  7. Java利用httpasyncclient进行异步HTTP请求

    Java利用httpasyncclient进行异步HTTP请求 前段时间有个需求在springmvc mapping的url跳转前完成一个统计的业务.显然需要进行异步的处理,不然出错或者异常会影响到后 ...

  8. 新一代自平衡电动代步工具Solo wheel!

    http://m.baidu.com/from=844b/bd_page_type=1/ssid=0/uid=3151E6C0905477A13653132D762BB6FB/pu=sz%401320 ...

  9. cocos2dx手写js绑定C++

    这两天连续查阅了js绑定c++的非常多文章  , 有手动与自己主动两种方式 . 本来想用自己主动绑定的 , 可是NDK一直下载不下来.....就给算了 . 以下总结一下手动绑定的实现过程 : 一共三步 ...

  10. tomcat压缩优化和缓存策略

    tomcat压缩内容 tomcat的压缩优化就是将返回的html页面等内容经过压缩,压缩成gzip格式之后.发送给浏览器,浏览器在本地解压缩的过程. 对于页面量信息大或者带宽小的情况下用压缩方式还是蛮 ...