在开发中会涉及到复杂逻辑时,SQL时动态变化的,所以要用到动态SQL。
因为入参会涉及到有的为空有的非空。比如有的是用id查询,有的是用name查询,有的是同时用id和name查询。
这里我先写了一个查询:
```
然后按照之前说的写service,在写测试:
@Test
public void queryBy() {
Student stu = new Student();
stu.setSid(4);
List students = service.queryBy(stu);
System.out.println(students.size());
for (Student stu1 : students) {
System.out.println(stu1);
}
}
```
最后的查询结果却与我们预想的不一样:
出现这种现象的原因也很好理解,以为name没有入参,但是sql最后执行的时候默认为null带到sql中,导致数据查询不出来。
接口:
public abstract List queryByCondition(Student stu);
service:
public List queryByCondition(Student stu) {
List list = null;
try{
//4.获取StudentMapper接口的实现类对象
StudentMapper mapper = sqlSession.getMapper(StudentMapper.class); // StudentMapper mapper = new StudentMapperImpl();
//5.通过实现类对象调用方法,接收结果
list = mapper.queryByCondition(stu);
} catch (Exception e) {
} finally {
//6.释放资源
if(sqlSession != null) {
sqlSession.close();
}
if(is != null) {
try {
is.close();
} catch (IOException e) {
e.printStackTrace();
}
}
}
//7.返回结果
return list;
}
@Test
public void queryByCondition() {
Student stu = new Student();
stu.setSid(4);
List students = service.queryByCondition(stu);
System.out.println(students.size());
for (Student stu1 : students) {
System.out.println(stu1);
}
}
:条件标签。如果有动态条件,则使用该标签代替 where 关键字。
:条件判断标签。
查询条件拼接
循环执行SQL的拼接操作,例如:select * from student where id in (1,3,4)
mapper文件:
service:
public List queryBySids(Integer[] sids) {
List list = null;
try{
//4.获取StudentMapper接口的实现类对象
StudentMapper mapper = sqlSession.getMapper(StudentMapper.class); // StudentMapper mapper = new StudentMapperImpl();
//5.通过实现类对象调用方法,接收结果
list = mapper.queryBySids(sids);
} catch (Exception e) {
} finally {
//6.释放资源
if(sqlSession != null) {
sqlSession.close();
}
if(is != null) {
try {
is.close();
} catch (IOException e) {
e.printStackTrace();
}
}
}
//7.返回结果
return list;
}
测试代码
@Test
public void queryBySids() {
Integer[] sids = new Integer[]{1,3,4};
List students = service.queryBySids(sids);
//System.out.println(students.size());
for (Student stu1 : students) {
System.out.println(stu1);
}
}
总结语法:
<foreach>:循环遍历标签。适用于多个参数或者的关系。
获取参数
foreach>
属性
collection:参数容器类型, (list-集合, array-数组)。
open:开始的 SQL 语句。
close:结束的 SQL 语句。
item:参数变量名。
separator:分隔符。
Sql 中可将重复的 sql 提取出来,使用时用 include 引用即可,最终达到 sql 重用的目的
sql>
<select id="findById" parameterType="int" resultType="student">
<include refid="selectStudent">include> where id=#{id}
select>
<select id="findByIds" parameterType="list" resultType="student">
<include refid="selectStudent">include>
<where>
<foreach collection="array" open="id in(" close=")" item="id" separator=",">
#{id}
foreach>
where>
select>
总结语法:
我们可以将一些重复性的 SQL 语句进行抽取,以达到复用的效果。
< select >:查询
< insert >:插入
< update >:修改
< delete >:删除
< where >:where条件
< if >:if判断
< foreach >:循环
< sql >:sql片段抽取
实际开发中多表的操作是很常见的。
新建项目mybatis03,添加相关jar包以及MyBatisCOnfig.xml文件。其他文件在后续开发中一一添加。
人和身份证,一个人对应一个身份证。
CREATE TABLE person(
id INT PRIMARY KEY AUTO_INCREMENT,
NAME VARCHAR(20),
age INT
);
INSERT INTO person VALUES (NULL,'张三',23);
INSERT INTO person VALUES (NULL,'李四',24);
INSERT INTO person VALUES (NULL,'王五',25);
CREATE TABLE card(
id INT PRIMARY KEY AUTO_INCREMENT,
number VARCHAR(30),
pid INT,
CONSTRAINT cp_fk FOREIGN KEY (pid) REFERENCES person(id)
);
INSERT INTO card VALUES (NULL,'12345',1);
INSERT INTO card VALUES (NULL,'23456',2);
INSERT INTO card VALUES (NULL,'34567',3);
接口:
public interface OneToOneMapper {
//查询全部
public abstract List selectAll();
}
xml文件
public class Test01 {
@Test
public void selectAll() throws Exception{
//1.加载核心配置文件
InputStream is = Resources.getResourceAsStream("MyBatisConfig.xml");
//2.获取SqlSession工厂对象
SqlSessionFactory sqlSessionFactory = new SqlSessionFactoryBuilder().build(is);
//3.通过工厂对象获取SqlSession对象
SqlSession sqlSession = sqlSessionFactory.openSession(true);
//4.获取OneToOneMapper接口的实现类对象
OneToOneMapper mapper = sqlSession.getMapper(OneToOneMapper.class);
//5.调用实现类的方法,接收结果
List list = mapper.selectAll();
//6.处理结果
for (Card c : list) {
System.out.println(c);
}
//7.释放资源
sqlSession.close();
is.close();
}
}
:配置字段和对象属性的映射关系标签。
id 属性:唯一标识
type 属性:实体对象类型
:配置主键映射关系标签。
:配置非主键映射关系标签。
column 属性:表中字段名称
property 属性: 实体对象变量名称
:配置被包含对象的映射关系标签。
property 属性:被包含对象的变量名
javaType 属性:被包含对象的数据类型
班级和学生,一个班级可以有多个学生。
CREATE TABLE classes(
id INT PRIMARY KEY AUTO_INCREMENT,
NAME VARCHAR(20)
);
INSERT INTO classes VALUES (NULL,'语文');
INSERT INTO classes VALUES (NULL,'数学');
CREATE TABLE student(
id INT PRIMARY KEY AUTO_INCREMENT,
NAME VARCHAR(30),
age INT,
cid INT,
CONSTRAINT cs_fk FOREIGN KEY (cid) REFERENCES classes(id)
);
INSERT INTO student VALUES (NULL,'张三',23,1);
INSERT INTO student VALUES (NULL,'李四',24,1);
INSERT INTO student VALUES (NULL,'王五',25,2);
INSERT INTO student VALUES (NULL,'赵六',26,2);
public interface OneToManyMapper {
//查询全部
public abstract List selectAll();
}
@Test
public void selectAll() throws Exception{
//1.加载核心配置文件
InputStream is = Resources.getResourceAsStream("MyBatisConfig.xml");
//2.获取SqlSession工厂对象
SqlSessionFactory sqlSessionFactory = new SqlSessionFactoryBuilder().build(is);
//3.通过工厂对象获取SqlSession对象
SqlSession sqlSession = sqlSessionFactory.openSession(true);
//4.获取OneToOneMapper接口的实现类对象
OneToManyMapper mapper = sqlSession.getMapper(OneToManyMapper.class);
//5.调用实现类的方法,接收结果
List list = mapper.selectAll();
//6.处理结果
for (Classes c : list) {
System.out.println(c);
}
//7.释放资源
sqlSession.close();
is.close();
}
:配置字段和对象属性的映射关系标签。
id 属性:唯一标识
type 属性:实体对象类型
:配置主键映射关系标签。
:配置非主键映射关系标签。
column 属性:表中字段名称
property 属性: 实体对象变量名称
:配置被包含集合对象的映射关系标签。
property 属性:被包含集合对象的变量名
ofType 属性:集合中保存的对象数据类型
学生和课程,一个学生可以选择多门课程、一个课程也可以被多个学生所选择。
CREATE TABLE course(
id INT PRIMARY KEY AUTO_INCREMENT,
NAME VARCHAR(20)
);
INSERT INTO course VALUES (NULL,'语文');
INSERT INTO course VALUES (NULL,'数学');
CREATE TABLE stu_cr(
id INT PRIMARY KEY AUTO_INCREMENT,
sid INT,
cid INT,
CONSTRAINT sc_fk1 FOREIGN KEY (sid) REFERENCES student(id),
CONSTRAINT sc_fk2 FOREIGN KEY (cid) REFERENCES course(id)
);
INSERT INTO stu_cr VALUES (NULL,1,1);
INSERT INTO stu_cr VALUES (NULL,1,2);
INSERT INTO stu_cr VALUES (NULL,2,1);
INSERT INTO stu_cr VALUES (NULL,2,2);
public interface ManyToManyMapper {
//查询全部
public abstract List selectAll();
}
@Test
public void selectAll() throws Exception
{
//1.加载核心配置文件
InputStream is = Resources.getResourceAsStream("MyBatisConfig.xml");
//2.获取SqlSession工厂对象
SqlSessionFactory sqlSessionFactory = new SqlSessionFactoryBuilder().build(is);
//3.通过工厂对象获取SqlSession对象
SqlSession sqlSession = sqlSessionFactory.openSession(true);
//4.获取OneToOneMapper接口的实现类对象
ManyToManyMapper mapper = sqlSession.getMapper(ManyToManyMapper.class);
//5.调用实现类的方法,接收结果
List list = mapper.selectAll();
//6.处理结果
for (Student c : list) {
System.out.println(c);
}
//7.释放资源
sqlSession.close();
is.close();
}
}
:配置字段和对象属性的映射关系标签。
id 属性:唯一标识
type 属性:实体对象类型
:配置主键映射关系标签。
:配置非主键映射关系标签。
column 属性:表中字段名称
property 属性: 实体对象变量名称
:配置被包含集合对象的映射关系标签。
property 属性:被包含集合对象的变量名
ofType 属性:集合中保存的对象数据类型
```