Analysis of 2 implementation methods of configuring jnid data source in Tomcatc3p0

Analysis of 2 implementation methods of configuring jnid data source in Tomcatc3p0

Using c3p0

Import the c3p0jar package

<!-- https://mvnrepository.com/artifact/com.mchange/c3p0 -->
  <dependency>
   <groupId>com.mchange</groupId>
   <artifactId>c3p0</artifactId>
   <version>0.9.5.2</version>
  </dependency>

Add data source configuration to the context.xml file of tomcat

<Resource 
    auth="Container" 
    description="DB Connection" 
    driverClass="com.mysql.jdbc.Driver" 
    maxPoolSize="100" minPoolSize="2" 
    acquireIncrement="2" 
    name="jdbc/myDB" 
    user="root" 
    password="123456" 
    factory="org.apache.naming.factory.BeanFactory" 
    type="com.mchange.v2.c3p0.ComboPooledDataSource" 
    jdbcUrl="jdbc:mysql://localhost:3306/attendance_system?characterEncoding=utf8&amp;serverTimezone=GMT%2B8" />

Get connected

protected void doGet(HttpServletRequest request, HttpServletResponse response)
      throws ServletException, IOException {
    try {
      //Create contextContext context=new InitialContext();
      //Get the data source ComboPooledDataSource comboPooledDataSource= (ComboPooledDataSource) context.lookup
          ("java:comp/env/jdbc/myDB");
      //Get database connection Connection connection=comboPooledDataSource.getConnection();
      
      if(!connection.isClosed()){
        System.out.println("Connected successfully");
      }
    } catch (NamingException e) {
      e.printStackTrace();
    } catch (SQLException e) {
      e.printStackTrace();
    }
  }

Using druid

Import jar package

 <!-- https://mvnrepository.com/artifact/com.alibaba/druid -->
  <dependency>
   <groupId>com.alibaba</groupId>
   <artifactId>druid</artifactId>
   <version>1.1.16</version>
  </dependency>

Add data source configuration to the context.xml file of tomcat

<Resource
  name="jdbc/MysqlDataSource"
  factory="com.alibaba.druid.pool.DruidDataSourceFactory"
  auth="Container"
  type="javax.sql.DataSource"
  driverClassName="com.mysql.cj.jdbc.Driver"
  url="jdbc:mysql://localhost:3306/yl?characterEncoding=utf8&amp;serverTimezone=GMT%2B8"
  username="root"
  password="123456"
  maxActive="50"
  maxWait="10000"
  removeabandoned="true"
  removeabandonedtimeout="60"
  logabandoned="false"
  filters="stat"/>

Get connected

protected void doGet(HttpServletRequest request, HttpServletResponse response)
      throws ServletException, IOException {
    try {
      //Get the context object Context context=new InitialContext();
      //Get the data source DataSource ds= (DataSource) context.lookup("java:comp/env/jdbc/MysqlDataSource");
      //Get the Connection object Connection connection=ds.getConnection();
​
      if(!connection.isClosed()){
        System.out.println("Connection successful");
​
      }
    } catch (NamingException e) {
      e.printStackTrace();
    } catch (SQLException e) {
      e.printStackTrace();
    }
  }

The above is the full content of this article. I hope it will be helpful for everyone’s study. I also hope that everyone will support 123WORDPRESS.COM.

You may also be interested in:
  • Introduction to the principles, configuration, and use of Tomcat data sources
  • Tomcat data source configuration method_JBuilder
  • Three ways to configure JNDI data source in Tomcat

<<:  Sample code using the element calendar component in Vue

>>:  Detailed explanation of the correct use of the count function in MySQL

Recommend

What to do after installing Ubuntu 20.04 (beginner's guide)

Ubuntu 20.04 has been released, bringing many new...

Analysis of mysql view functions and usage examples

This article uses examples to illustrate the func...

In-depth understanding of MySQL master-slave replication thread state transition

Preface The basic principle of MySQL master-slave...

Thirty HTML coding guidelines for beginners

1. Always close HTML tags In the source code of p...

Detailed explanation of Nginx log customization and enabling log buffer

Preface If you want to count the source of websit...

Solve the problem of the container showing Exited (0) after docker run

I made a Dockerfile for openresty on centos7 and ...

HTML tutorial, HTML default style

html , address , blockquote , body , dd , div , d...

Solution for Tomcat to place configuration files externally

question When we are developing normally, if we w...

How to configure the Runner container in Docker

1. Create a runner container mk@mk-pc:~/Desktop$ ...

Vue realizes the palace grid rotation lottery

Vue implements the palace grid rotation lottery (...

9 Practical Tips for Creating Web Content Pages

Content 1. Give readers a reason to stay. Make the...

In-depth understanding of asynchronous waiting in Javascript

In this article, we’ll explore how async/await is...