jndi
c3p0
dbcp dbcp2
druid
使用软件
jdbc
1) 加载驱动
2)建立连接
Connection conn = DriverManager.getConnection(url);
ini
properties
xml
yml
db.properties
driverClassName=com.mysql.jdbc.Driver //驱动加载
url=jdbc:mysql://127.0.0.1:3306/student?characterEncoding=utf-8 //注册驱动
username=root //连接数据库的用户名
password=sjw58586 //连接数据库的密码。
filters=stat //属性类型的字符串,通过别名的方式配置扩展插件, 监控统计用的stat 日志用log4j 防御sql注入:wall
initialSize=2 //初始化时池中建立的物理连接个数。
maxActive=300 //最大的可活跃的连接池数量
maxWait=60000 //获取连接时最大等待时间,单位毫秒,超过连接就会失效。配置了maxWait之后,缺省启用公平锁,并发效率会有所下降, 如果需要可以通过配置useUnfairLock属性为true使用非公平锁。
timeBetweenEvictionRunsMillis=60000 // 连接回收器的运行周期时间,时间到了清理池中空闲的连接,testWhileIdle根据这个判断
minEvictableIdleTimeMillis=300000
validationQuery=SELECT 1 //用来检测连接是否有效的sql,要求是一个查询语句。
testWhileIdle=true //建议配置为true,不影响性能,并且保证安全性。 申请连接的时候检测,如果空闲时间大于timeBetweenEvictionRunsMillis, 执行validationQuery检测连接是否有效。
testOnBorrow=false //申请连接时执行validationQuery检测连接是否有效,做了这个配置会降低性能。设置为false
testOnReturn=false //归还连接时执行validationQuery检测连接是否有效,做了这个配置会降低性能,设置为flase
poolPreparedStatements=false //是否缓存preparedStatement,也就是PSCache。
maxPoolPreparedStatementPerConnectionSize=200 // 池中能够缓冲的preparedStatements语句数量
1)建立一个工具类 DruidUtil.java
package org.beiyou.util;
import com.alibaba.druid.pool.DruidDataSource;
import com.alibaba.druid.pool.DruidDataSourceFactory;
import java.io.IOException;
import java.sql.Connection;
import java.sql.SQLException;
import java.util.Properties;
/**
* <p>功能描述: </p>
*
* @author webrx
* @version 1.0
* @date 2019-12-31 17:09
*/
public class DruidUtil {
static DruidDataSource dataSource;
static {
Properties properties = new Properties();
try {
properties.load(DruidUtil.class.getClassLoader().getResourceAsStream("db.properties"));
dataSource = (DruidDataSource) DruidDataSourceFactory.createDataSource(properties);
} catch (IOException e) {
e.printStackTrace();
} catch (Exception e) {
e.printStackTrace();
}
}
public static Connection getConnection() {
try {
return dataSource.getConnection();
} catch (SQLException e) {
e.printStackTrace();
}
return null;
}
public static void colse() {
dataSource.close();
}
}
2)在项目的resources目录下 建立 db.properties文件是配置文件
driverClassName=com.mysql.cj.jdbc.Driver
url=jdbc:mysql://localhost:3306/db?serverTimezone=PRC
username=root
password=
filters=stat
initialSize=2
maxActive=300
maxWait=60000
3)编写代码使用
package org.beiyou;
import org.beiyou.util.DruidUtil;
import javax.servlet.ServletException;
import javax.servlet.annotation.WebServlet;
import javax.servlet.http.HttpServlet;
import javax.servlet.http.HttpServletRequest;
import javax.servlet.http.HttpServletResponse;
import java.io.IOException;
import java.io.PrintWriter;
import java.sql.Connection;
import java.sql.PreparedStatement;
import java.sql.ResultSet;
/**
* <p>功能描述: </p>
*
* @author webrx
* @version 1.0
* @date 2019-12-31 17:16
*/
@WebServlet("/show")
public class ShowStudentInfo extends HttpServlet {
@Override
protected void service(HttpServletRequest req, HttpServletResponse resp) throws ServletException, IOException {
resp.setCharacterEncoding("utf-8");
Connection conn = DruidUtil.getConnection(); //使用的数据库连接池来建立连接的。
int id = req.getParameter("id") == null ? 1 : Integer.parseInt(req.getParameter("id"));
try {
PreparedStatement pst = conn.prepareStatement("select * from student where id=?");
pst.setInt(1, id);
ResultSet rs = pst.executeQuery();
rs.next();
PrintWriter out = resp.getWriter();
out.print("<!DOCTYPE html>");
out.print("<html>");
out.print("<head>");
out.print("<meta charset=\"utf-8\">");
out.print("</head>");
out.print(rs.getString("name"));
} catch (Exception e) {
e.printStackTrace();
}
}
}