如何配置mysql JNDI连接池

Posted ggl5250703

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了如何配置mysql JNDI连接池相关的知识,希望对你有一定的参考价值。

一、在tomcat conf目录下的context.xml文件里的Context标签下添加如下配置
<Resource name="jdbc/news" auth="Container" type="javax.sql.DataSource"
maxActive="100" maxIdle="30" maxWait="10000" username="root"
password="123456" driverClassName="com.mysql.jdbc.Driver"
url="jdbc:mysql://localhost:3306/newsmanagersystem?
useUnicode=true&amp;characterEncoding=utf-8"/>
二、
在当前项目的web.xml文件里配置如下信息
 <!--jndi数据库配置  -->
  <resource-ref>
    <description>news DataSource</description>
    <res-ref-name>jdbc/news</res-ref-name>
    <res-type>javax.sql.DataSource</res-type>
    <res-auth>Container</res-auth>
  </resource-ref>
三、
import javax.naming.Context;
import javax.naming.InitialContext;
import javax.sql.DataSource;
//获得数据库连接
    public static Connection getConnection(){
        Connection conn=null;
        try {
            Context context=new InitialContext();
            DataSource ds = (DataSource)context.lookup("java:comp/env/jdbc/news");
            conn=ds.getConnection();
            return conn;
        } catch (Exception e) {
            // TODO Auto-generated catch block
            e.printStackTrace();
        }
        return conn;
    }
































以上是关于如何配置mysql JNDI连接池的主要内容,如果未能解决你的问题,请参考以下文章

jboss连接池

JNDI学习总结:tomcat下使用c3p0数据库连接池配置JNDI数据源

Spring+Tomcat的JNDI数据源连接池简单配置

5. JDBC之数据库连接池——Part2

tomcat怎么配置JNDI连接

Tomcat配置连接c3p0连接池