Spring
框架是一个开放源代码的J2EE
应用程序框架,它使得我们的开发过程更简单,可以大大减少工作量,提高效率。spring
具有轻量化、ioc
(控制反转)、aop
(面向切面编程)思想、mvc
模式等特性,在企业中被广泛使用。
今天我们使用Maven
完成spring
的配置以及和MyBatis
的整合。
# 动态扫描过程图 | ||||
---|---|---|---|---|
# 配置xml ## 配置pom.xml
在pom.xml 中加入properties ,指定spring 版本:
<dependencies> 中引入spring 的全部包、mybatis 以及mybatis-spring 整合包、c3p0 连接池、mysql 数据库驱动、
|
||||
## 配置ApplicationContext.xml
在resources 目录中创建ApplicationContext.xml ,引入以下内容: |
||||
mybatis-spring.jar 提供了很多方便的类: |
||||
-
SqlSessionFactoryBean 可以直接配置SqlSessionFactory 而不需要我们提供mybatis-config.xml 配置文件。
需要参数dataSource : 提供一个连接池 -
MapperScannerConfigurer 会自动扫描mapper 包内的所有mapper 映射文件,使得我们直接一步直接获得mapper 接口
它会自动读取ApplicationContext.xml 中配置的SqlSessionFactoryBean 工厂类,并自动生成所有的mapper 接口
需要参数basePackage : 指定mapper 包的位置
mybatis-spring 的整合,我们就不需要再配置mybatis-config.xml 了。 |
提供bean和mapper
要实现动态扫描开发,我们需要提供一个bean
实现类,并且提供mapper
接口和对应的mapper.xml
配置文件。
笔者这里直接使用MyBatis Generator
生成了bean(pojo)
实现类和mapper
配置文件以及mapper
接口:
pojo/Users
中生成的实现类: 1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46package pojo;
public class Users {
private Integer id;
String name;
private Integer age;
public Users(Integer id, String name, Integer age) {
this.id = id;
this.name = name;
this.age = age;
}
public Users() {
super();
}
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 == null ? null : name.trim();
}
public Integer getAge() {
return age;
}
public void setAge(Integer age) {
this.age = age;
}
public String toString() {
return id + ", " + name + ", " + age;
}
}
mapper/UsersMapper
中生成的接口文件,MyBatis Generator
为我们自动生成了各种方法:
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20package mapper;
import java.util.List;
import org.apache.ibatis.annotations.Param;
import pojo.Users;
import pojo.UsersExample;
public interface UsersMapper {
long countByExample(UsersExample example);
int deleteByExample(UsersExample example);
int deleteByPrimaryKey(Integer id);
int insert(Users record);
int insertSelective(Users record);
List<Users> selectByExample(UsersExample example);
Users selectByPrimaryKey(Integer id);
int updateByExampleSelective(; Users record, UsersExample example)
int updateByExample(; Users record, UsersExample example)
int updateByPrimaryKeySelective(Users record);
int updateByPrimaryKey(Users record);
}
实现访问数据库
基于mybatis-spring
下的动态扫描开发,要访问数据库非常简单,笔者此处实现了一个UsersTest
类,使用junit
进行测试,只需3行代码我们就可以访问数据库并返回数据了:
1 | package test; |
测试成功,控制台中正确返回了结果(此处DEBUG
数据来自log4j
):
1
2
3
4
5
6
7DEBUG [main] - JDBC Connection [com.mchange.v2.c3p0.impl.NewProxyConnection@410ae9a3 [wrapping: com.mysql.cj.jdbc.ConnectionImpl@319988b0]] will not be managed by Spring
DEBUG [main] - ==> Preparing: select id, name, age from users where id = ?
DEBUG [main] - ==> Parameters: 1(Integer)
DEBUG [main] - <== Total: 1
DEBUG [main] - Closing non transactional SqlSession [org.apache.ibatis.session.defaults.DefaultSqlSession@7d3430a7]
DEBUG [main] - Returning JDBC Connection to DataSource
1, Adam, 13
完整目录(此处service
包可忽略):