mybatis动态sql

mybatis的动态sql:

if标签的使用:

package com.cbh.dao;

import java.util.List;
import com.cbh.beans.Student;

public interface IStudent {
List<Student>selectStudentsByCondition(String name,int age,int score);
List<Student>selectStudentsByConditionif(Student student);
List<Student>selectStudentsByConditionwhere(Student student);
}
mapper配置文件
<?xml version="1.0" encoding="UTF-8" ?>
<!DOCTYPE mapper
PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
"http://mybatis.org/dtd/mybatis-3-mapper.dtd">
<mapper namespace="com.cbh.dao.IStudent">
<select id="selectStudentsByConditionif" resultType="Student">
select id,name,age,score 
from student1 
where 1=1
<if test="name !=null and name !=''">
and name like '%' #{name} '%'
</if>
<if test="age>0">
and age> #{age}
</if>
</select> 
<select id="selectStudentsByConditionwhere" resultType="Student">
select id,name,age,score 
from student1 
<where>
<if test="name !=null and name !=''">
name like '%' #{name} '%'
</if>
<if test="age>0">
and age> #{age}
</if>
<if test="score>0">
and score>#{score}
</if>
</where>
</select> 
<!-- 
#{}中可以放入的内容
1.参数对象的属性
2.随意的内容,此时#{}是个占位符
3.参数为map时的key
4.参数为map时,若key所对应的value为对象,则可以将该对象的属性放入
5.参数的索引号(本次就是参数的索引号)
 -->
 
</mapper>
		
测试类:

package com.cbh.test;

import java.util.List;
import java.util.Map;

import org.apache.ibatis.session.SqlSession;
import org.junit.Before;
import org.junit.Test;

import com.cbh.Utils.MybatisUtils;
import com.cbh.beans.Student;
import com.cbh.dao.IStudent;

public class mytest {
	private IStudent dao;
	@Before
	public void before() {
	SqlSession sqlSession=	MybatisUtils.getSqlSession();
		dao =sqlSession.getMapper(IStudent.class) ;
	}
	
@After
public void after(){
if(sqlsession!=null){
sqlsession.close();
}
	
}
@Testpublic void test8(){
//Student stu=new Student("大",23,0);
Student stu=new Student("",0,0);
List<Student> student=dao.selectStudentsByConditionif(stu );
for (Student student2 : student) {
System.out.println(student2);
}
}
@Testpublic void test9(){
Student stu=new Student("",0,100);
List<Student> student=dao.selectStudentsByConditionwhere(stu);
for (Student student2 : student) {
System.out.println(student2);
}
}
 }




  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值