一. Java连接MySQL
-
使用IDEA连接MySQL
选择IDEA右侧工具栏Database,点击加号选择Data Source,选择MySQL
配置完成之后点击Test Connection;第一次连接可能会出现时区错误,直接点击错误信息,IDEA会自动修改错误,最后点击ok即可成功连接MySQL。
-
创建数据库
双击打开刚才创建的localhost连接,右键schemas选择new,选择Schema
输入数据库名称java-test,点击ok,就可以在schemas中看到创建的数据库
-
创建user表
也可以在MySQLconsole中直接执行下面的代码
create table user
(
id int auto_increment comment '主键',
name varchar(32) not null comment '用户名',
age int null comment '年龄',
gender tinyint default 0 null comment '性别,默认为0(未知),1为男,2为女',
address varchar(128) null comment '家庭住址',
constraint user_pk
primary key (id)
)
comment '用户表';
- 配置maven文件添加连接MySQL的jar包依赖
打开porm.xml文件在标签内输入以下内容
mysql
mysql-connector-java
8.0.13
然后点击IDEA右侧工具栏maven
- 创建Java文件TestConnection连接MySQL
import java.sql.*;
public class TestConnection {
/**
* MySQL 8.0 以上版本 - JDBC 驱动名及数据库 URL
*/
static final String JDBC_DRIVER = "com.mysql.cj.jdbc.Driver";
static final String DB_URL = "jdbc:mysql://localhost:3306/java-test?" +
"useSSL=false&allowPublicKeyRetrieval=true&serverTimezone=UTC";
/**
*数据库的用户名与密码
*/
static final String USER = "root";
static final String PASS = "root";
public static void main(String[] args) {
Connection conn = null;
Statement stmt = null;
try{
// 注册 JDBC 驱动
Class.forName(JDBC_DRIVER);
// 打开链接
System.out.println("连接数据库...");
conn = DriverManager.getConnection(DB_URL,USER,PASS);
System.out.println("数据库连接成功!");
//关闭资源
conn.close();
}catch(SQLException se){
// 处理 JDBC 错误
se.printStackTrace();
}catch(Exception e){
// 处理 Class.forName 错误
e.printStackTrace();
}finally{
// 关闭资源,在发生异常时,发生异常位置后面的代码不会执行,但是finally始终会执行,因此在这里要进行资源关闭的操作
try{
if(conn!=null) {
conn.close();
}
}catch(SQLException se){
se.printStackTrace();
}
}
}
}
将以上代码粘贴到TestConnection中点击绿色按钮运行,如果未报任何错误就说明数据库连接成功。
说明:一般来说,连接数据库的配置信息(数据库连接驱动、数据库URL、用户名、密码等)很少会改动,因此在实际使用的时候会将数据库连接信息放到配置文件中,而且在真正的项目中(以网站开发为例)也会使用到其他的工具(数据库连接池、mybatis等等)目前来说可以先掌握最基本的增删查改。
二. Java操作MySQL(增删查改)
- 增,向数据库插入一条数据
String sql = "insert into user(name, age, gender, address) values(?,?,?,?)";
stmt = conn.prepareStatement(sql);
stmt.setString(1, "张三");
stmt.setInt(2, 23);
stmt.setInt(3, 1);
stmt.setString(4, "山东济南高新区");
boolean res = stmt.execute();
// 这个execute方法的返回值有点意思,如果是执行的查询操作而且有结果返回那么这个方法的返回值就是true,
// 如果是更新操作返回的结果就是false
if (!res) {
System.out.println("数据插入成功!");
} else {
System.out.println("数据插入失败!");
}
- 查,查询数据库数据
// 查
String query = "select name, age, gender, address from user";
stmt = conn.prepareStatement(query);
ResultSet resultSet = stmt.executeQuery();
System.out.println("查询成功!");
System.out.println("=====================");
while (resultSet.next()) {
System.out.println("name: " + resultSet.getString("name"));
System.out.println("age: " + resultSet.getInt("age"));
System.out.println("gender: " + resultSet.getInt("gender"));
System.out.println("address: " + resultSet.getString("address"));
}
System.out.println("=====================");
- 改,修改一条数据
// 改
String update = "update user set age=? where name=?";
stmt = conn.prepareStatement(update);
stmt.setInt(1, 25);
stmt.setString(2, "张三");
boolean res2 = stmt.execute();
if (!res2) {
System.out.println("数据库更新成功!");
} else {
System.out.println("数据库更新失败!");
}
- 删, 删除一条数据
// 删
String delete = "delete from user where name = ?";
stmt = conn.prepareStatement(delete);
stmt.setString(1, "张三");
boolean res3 = stmt.execute();
if (!res3) {
System.out.println("删除数据成功!");
} else {
System.out.println("删除数据失败!");
}
完整示例:
import java.sql.*;
public class TestConnection {
/**
* MySQL 8.0 以上版本 - JDBC 驱动名及数据库 URL
*/
static final String JDBC_DRIVER = "com.mysql.cj.jdbc.Driver";
static final String DB_URL = "jdbc:mysql://localhost:3306/java-test?" +
"useSSL=false&allowPublicKeyRetrieval=true&serverTimezone=UTC";
/**
* 数据库的用户名与密码
*/
static final String USER = "root";
static final String PASS = "root";
public static void main(String[] args) {
Connection conn = null;
// 声明预编译对象
PreparedStatement stmt = null;
try {
// 注册 JDBC 驱动
Class.forName(JDBC_DRIVER);
// 打开链接
System.out.println("连接数据库...");
conn = DriverManager.getConnection(DB_URL, USER, PASS);
System.out.println("数据库连接成功!");
// 增
String sql = "insert into user(name, age, gender, address) values(?,?,?,?)";
// 实例化预编译对象
stmt = conn.prepareStatement(sql);
// 为每个参数(?)赋值
stmt.setString(1, "张三");
stmt.setInt(2, 23);
stmt.setInt(3, 1);
stmt.setString(4, "山东济南高新区");
boolean res = stmt.execute();
// 这个execute方法的返回值有点意思,如果是执行的查询操作而且有结果返回那么这个方法的返回值就是true,
// 如果是更新操作返回的结果就是false
if (!res) {
System.out.println("数据插入成功!");
} else {
System.out.println("数据插入失败!");
}
// 查
String query = "select name, age, gender, address from user";
// 为预编译对象赋新的值
stmt = conn.prepareStatement(query);
ResultSet resultSet = stmt.executeQuery();
System.out.println("查询成功!");
System.out.println("=====================");
while (resultSet.next()) {
System.out.println("name: " + resultSet.getString("name"));
System.out.println("age: " + resultSet.getInt("age"));
System.out.println("gender: " + resultSet.getInt("gender"));
System.out.println("address: " + resultSet.getString("address"));
}
System.out.println("=====================");
// 改
String update = "update user set age=? where name=?";
stmt = conn.prepareStatement(update);
stmt.setInt(1, 25);
stmt.setString(2, "张三");
boolean res2 = stmt.execute();
if (!res2) {
System.out.println("数据库更新成功!");
} else {
System.out.println("数据库更新失败!");
}
// 删
String delete = "delete from user where name = ?";
stmt = conn.prepareStatement(delete);
stmt.setString(1, "张三");
boolean res3 = stmt.execute();
if (!res3) {
System.out.println("删除数据成功!");
} else {
System.out.println("删除数据失败!");
}
// 关闭资源,关闭资源时遵循先关小后关大的原则
resultSet.close();
stmt.close();
conn.close();
} catch (SQLException se) {
// 处理 JDBC 错误
se.printStackTrace();
} catch (Exception e) {
// 处理 Class.forName 错误
e.printStackTrace();
} finally {
// 关闭资源,在发生异常时,发生异常位置后面的代码不会执行,但是finally始终会执行,因此在这里要进行资源关闭的操作
try {
if (stmt != null) {
stmt.close();
}
} catch (SQLException ignored) {
}
try {
if (conn != null) {
conn.close();
}
} catch (SQLException se) {
se.printStackTrace();
}
}
}
}
总结:这些是最基本的数据库增删查改,但是在项目中不会这样与数据进行交互,在实际项目中会对整个项目进行分层目前最流行的分层结构为MVC,M:Model、V:View、C:Control这个是理论上的分层结构,所谓的分层结构落实到Java项目结构体现为包的分层,把同一层的文件放到同一个包中,方便查阅管理编写。