目前我们已经对Spring有一个简单的认识了:
Spring有一个容器,叫做IoC容器,里面保存bean。
在进行企业级开发的时候,其实除了将自己写的类让Spring管理之外,还有一部分重要的工作就是使用第三方的技术。前面已经讲了如何管理第三方bean了,下面结合IoC和DI,Spring整合Mybatis技术来加深对Spring的理解和使用。
本篇先不用Spring整合,先使用纯Mybatis开发,看看Mybatis的实现过程,再在下一篇中学习Spring 整合Mybatis。
主要步骤是:
–> 创建模型类
–> 创建Dao接口
–> 添加jdbc.properties文件: jdbc连接信息
–> 添加Mybatis核心配置文件 :读取外部properties配置文件、别名扫描的包路径、数据源、映射文件扫描包路径
–> 编写应用程序:
- 创建SqlSessionFactoryBuilder对象
- 加载SqlMapConfig.xml配置文件
- 创建SqlSessionFactory对象
- 获取SqlSession
- 执行SqlSession对象执行查询,获取结果User
- 使用获取的mapper对象操作数据
步骤1:准备数据库表
Mybatis是来操作数据库表,所以先创建一个数据库及表,并插入两条数据
create database spring_db character set utf8;
use spring_db;
create table tbl_account(id int primary key auto_increment,name varchar(35),money double
);insert into tbl_account(name,money)values('张三',33)
insert into tbl_account(name,money)values('张三2',66)select * from tbl_account
步骤2:创建项目导入jar包
项目的pom.xml添加相关依赖
<dependencies><dependency><groupId>org.springframework</groupId><artifactId>spring-context</artifactId><version>6.1.14</version></dependency><dependency><groupId>org.mybatis</groupId><artifactId>mybatis</artifactId><version>3.5.6</version></dependency><dependency><groupId>mysql</groupId><artifactId>mysql-connector-java</artifactId><version>5.1.47</version></dependency></dependencies>
步骤3:根据表创建模型类
public class Account implements Serializable {private Integer id;private String name;private Double money;public Integer getId() {return id;}public void setId(Integer id) {this.id = id;}public String getName() {return name;}public void setName(String name) {this.name = name;}public Double getMoney() {return money;}public void setMoney(Double money) {this.money = money;}@Overridepublic String toString() {return "Account{" +"id=" + id +", name='" + name + '\'' +", money=" + money +'}';}
}
步骤4:创建Dao接口
public interface AccountDao {@Insert("insert into tbl_account(name,money)values(#{name},#{money})")void save(Account account);@Delete("delete from tbl_account where id = #{id} ")void delete(Integer id);@Update("update tbl_account set name = #{name} , money = #{money} where id = #{id} ")void update(Account account);@Select("select * from tbl_account")List<Account> findAll();@Select("select * from tbl_account where id = #{id} ")Account findById(Integer id);
}
步骤5:添加jdbc.properties文件
resources目录下添加,用于配置数据库连接四要素
jdbc.driver=com.mysql.jdbc.Driver
jdbc.url=jdbc:mysql://localhost:3306/spring_db?useSSL=false
jdbc.username=root
jdbc.password=fage
useSSL:关闭MySQL的SSL连接
步骤6:添加Mybatis核心配置文件
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE configurationPUBLIC "-//mybatis.org//DTD Config 3.0//EN""http://mybatis.org/dtd/mybatis-3-config.dtd">
<configuration><!--读取外部properties配置文件--><properties resource="jdbc.properties"></properties><!--别名扫描的包路径--><typeAliases><package name="com.itheima.domain"/></typeAliases><!--数据源--><environments default="mysql"><environment id="mysql"><transactionManager type="JDBC"></transactionManager><dataSource type="POOLED"><property name="driver" value="${jdbc.driver}"></property><property name="url" value="${jdbc.url}"></property><property name="username" value="${jdbc.username}"></property><property name="password" value="${jdbc.password}"></property></dataSource></environment></environments><!--映射文件扫描包路径--><mappers><package name="com.itheima.dao"></package></mappers>
</configuration>
步骤7:编写应用程序
public class App {public static void main(String[] args) throws IOException {// 1. 创建SqlSessionFactoryBuilder对象SqlSessionFactoryBuilder sqlSessionFactoryBuilder = new SqlSessionFactoryBuilder();// 2. 加载SqlMapConfig.xml配置文件InputStream inputStream = Resources.getResourceAsStream("SqlMapConfig.xml");// 3. 创建SqlSessionFactory对象SqlSessionFactory sqlSessionFactory = sqlSessionFactoryBuilder.build(inputStream);// 4. 获取SqlSessionSqlSession sqlSession = sqlSessionFactory.openSession();// 5. 执行SqlSession对象执行查询,获取结果UserAccountDao accountDao = sqlSession.getMapper(AccountDao.class);Account ac = accountDao.findById(2);System.out.println(ac);List<Account> la = accountDao.findAll();System.out.println(la);accountDao.delete(1);List<Account> la2 = accountDao.findAll();System.out.println(la2);// 6. 释放资源sqlSession.close();}
}
步骤8:运行程序
[说明]:内容主要来源黑马程序员网上资源学习