mysql8.0以上版本中: JDBC和Druid的配置
Posted SSimeng
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了mysql8.0以上版本中: JDBC和Druid的配置相关的知识,希望对你有一定的参考价值。
1. jdbc.properties配置文件的编写
jdbc.driverClassName=com.mysql.cj.jdbc.Driver
jdbc.url=jdbc:mysql://ip:port/database?useSSL=false&serverTimezone=Asia/Shanghai&allowPublicKeyRetrieval=true
jdbc.username=root
jdbc.password=123
2. druid.properties配置文件的编写
druid.driverClassName = com.mysql.cj.jdbc.Driver
druid.url= jdbc:mysql://ip:port/database?useSSL=false&serverTimezone=Asia/Shanghai&allowPublicKeyRetrieval=true
druid.username = root
druid.password = 123
druid.maxActive=20
3. jdbc连接数据库的代码
class A{
final String USERNAME="root";
final String PASSWORD="123";
final String URL="jdbc:mysql://192.168.0.154:3306/book_db?useSSL=false&serverTimezone=Asia/Shanghai&allowPublicKeyRetrieval=true";
Class.forName("com.mysql.cj.jdbc.Driver");
Connection connection = DriverManager.getConnection(URL, USERNAME, PASSWORD);
Statement state = connection.createStatement();
String sql="insert into book_tab(book_title,book_price) values('美少女战士',99.99)";
state.executeUpdate(sql);
System.out.println("添加成功");
if(state!=null) {
state.close();
}
if(connection!=null) {
connection.close();
}
}
3. druid连接池连接数据库的代码
Properties pro = new Properties();
pro.load(new FileReader(Constants.PATH));//括号里面写上你的配置文件路径
DruidDataSource ds = new DruidDataSource();
ds.configFromPropety(pro);
Connection conn = ds.getConnection();//获取连接
PrepareStatement pst = conn.prepareStatement(sql);
ResultSet rs=pst.executeQuery(); //执行查询有返回结果集
while(rs.next()) {
System.out.println(rs.getString(列名));
}
/*
*完毕之后记得关闭所有连接,释放资源
*/
if (rs != null) {
rs.close();
}
if (pst != null) {
pst.close();
}
if (conn != null) {
conn.close();
}
以上是关于mysql8.0以上版本中: JDBC和Druid的配置的主要内容,如果未能解决你的问题,请参考以下文章