栏目分类:
子分类:
返回
名师互学网用户登录
快速导航关闭
当前搜索
当前分类
子分类
实用工具
热门搜索
名师互学网 > IT > 面试经验 > 面试问答

Tomcat6 MySql JDBC数据源配置

面试问答 更新时间: 发布时间: IT归档 最新发布 模块sitemap 名妆网 法律咨询 聚返吧 英语巴士网 伯小乐 网商动力

Tomcat6 MySql JDBC数据源配置

信不信由你,人们在Spring之前就编写了应用程序,但有些人仍然没有使用它:)在您的情况下,您可以使用Tomcat连接池(并且在文档中有 MySQL的完整配置示例)。让我总结一下:

首先,将驱动程序放入

$CATALINA_HOME/lib

然后,通过在Context中添加资源声明来在Tomcat中配置JNDI数据源:

<Context path="/DBTest" docbase="DBTest"        debug="5" reloadable="true" crossContext="true">    <!-- maxActive: Maximum number of dB connections in pool. Make sure you         configure your mysqld max_connections large enough to handle         all of your db connections. Set to -1 for no limit.         -->    <!-- maxIdle: Maximum number of idle dB connections to retain in pool.         Set to -1 for no limit.  See also the DBCP documentation on this         and the minEvictableIdleTimeMillis configuration parameter.         -->    <!-- maxWait: Maximum time to wait for a dB connection to become available         in ms, in this example 10 seconds. An Exception is thrown if         this timeout is exceeded.  Set to -1 to wait indefinitely.         -->    <!-- username and password: MySQL dB username and password for dB connections  -->    <!-- driverClassName: Class name for the old mm.mysql JDBC driver is         org.gjt.mm.mysql.Driver - we recommend using Connector/J though.         Class name for the official MySQL Connector/J driver is com.mysql.jdbc.Driver.         -->    <!-- url: The JDBC connection url for connecting to your MySQL dB.         -->  <Resource name="jdbc/TestDB" auth="Container" type="javax.sql.DataSource"    maxActive="100" maxIdle="30" maxWait="10000"    username="javauser" password="javadude" driverClassName="com.mysql.jdbc.Driver"    url="jdbc:mysql://localhost:3306/javatest"/></Context>

在您的中声明此资源

web.xml

<web-app xmlns="http://java.sun.com/xml/ns/j2ee"    xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"    xsi:schemaLocation="http://java.sun.com/xml/ns/j2eehttp://java.sun.com/xml/ns/j2ee/web-app_2_4.xsd"    version="2.4">  <description>MySQL Test App</description>  <resource-ref>      <description>DB Connection</description>      <res-ref-name>jdbc/TestDB</res-ref-name>      <res-type>javax.sql.DataSource</res-type>      <res-auth>Container</res-auth>  </resource-ref></web-app>

并在您的应用程序中通过JNDI查找获得数据源:

Context initCtx = new InitialContext();Context envCtx = (Context) initCtx.lookup("java:comp/env");DataSource ds = (DataSource) envCtx.lookup("jdbc/TestDB");Connection conn = ds.getConnection();... use this connection to access the database ...conn.close();

请注意,此类

lookup
代码通常以形式编码
ServiceLocator
(当您无法使用DI容器或框架为您注入代码时)。



转载请注明:文章转载自 www.mshxw.com
本文地址:https://www.mshxw.com/it/447431.html
我们一直用心在做
关于我们 文章归档 网站地图 联系我们

版权所有 (c)2021-2022 MSHXW.COM

ICP备案号:晋ICP备2021003244-6号