一、创建项目和数据库
项目名称:mybatis092901
数据库名称:mybatis0929
表名称:dept
CREATE TABLE `dept` (
`deptNo` int(11) NOT NULL,
`deptName` varchar(30) DEFAULT NULL,
`location` varchar(30) DEFAULT NULL,
PRIMARY KEY (`deptNo`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8;
表名称:emp
CREATE TABLE `emp` (
`empno` int(11) NOT NULL,
`ename` varchar(30) DEFAULT NULL,
`hiredate` date DEFAULT NULL,
`job` varchar(30) DEFAULT NULL,
`sal` double DEFAULT NULL,
`mgr` varchar(30) DEFAULT NULL,
`comm` varchar(30) DEFAULT NULL,
`deptno` int(11) DEFAULT NULL,
PRIMARY KEY (`empno`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8;
二、添加jar包
1.在项目上创建lib目录
/lib
2.在lib目录下添加jar
junit-4.10.jar
mybatis-3.2.2.jar
mysql-connector-java-5.1.10-bin.jar
三、添加配置文件
1.在项目上创建conf目录
/conf
2.在conf目录下添加配置文件
配置文件名称:mybatis-config.xml
配置文件内容:
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE configuration PUBLIC "-//mybatis.org//DTD Config 3.0//EN"
"http://mybatis.org/dtd/mybatis-3-config.dtd">
<configuration>
<typeAliases>
<typeAlias alias="Emp" type="cn.jbit.mybatis092901.domain.Emp"/>
</typeAliases>
<environments default="development">
<environment id="development">
<transactionManager type="JDBC"/>
<dataSource type="POOLED">
<property name="driver" value="com.mysql.jdbc.Driver"/>
<property name="url" value="jdbc:mysql://localhost:3306/mybatis0929"/>
<property name="username" value="root"/>
<property name="password" value="root"/>
</dataSource>
</environment>
</environments>
</configuration>
四、创建实体类
1.在src目录下创建包
包名:cn.jbit.mybatis092901.domain
2.在包下创建实体类
类名:Dept.java
内容:
public class Dept implements Serializable {
private Integer deptNo;//部门编号
private String deptName;//部门名称
private String location;//部门地址
//省略get and set
}
类名:Emp.java
内容:
public class Emp implements Serializable {
//员工姓名
private String empName;
//员工编号
private Integer empNo;
//员工入职时间
private Date hireDate;
//员工职位
private String job;
//员工工资
private Double salary;
//经理编号
private Integer mgr;
//奖金
private Double comm;
//部门编号
private Integer deptNo;
//省略get and set
}
五、持久层设计
1.接口设计
1).在src目录创建包
包名:cn.jbit.mybatis092901.dao
2).在包下创建接口
接口名:IEmpDao.java
接口中内容:
public interface IEmpDao {
public List<Emp> findEmpByExampleChoose(Emp emp);
}
六、添加相关映射文件
1.在conf下添加配置文件
映射文件名称:EmpDaoMapper.xml
映射文件内容:
<?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="cn.jbit.mybatis092901.dao.IEmpDao">
<resultMap id="empResultMap" type="cn.jbit.mybatis092901.domain.Emp">
<id property="empNo" column="empno" />
<result property="empName" column="ename" />
<result property="hireDate" column="hiredate" />
<result property="job" column="job" />
<result property="salary" column="sal" />
<result property="comm" column="comm" />
</resultMap>
<select id="findEmpByExampleChoose" parameterType="Emp" resultMap="empResultMap">
SELECT * FROM EMP WHERE 1 = 1
<choose>
<when test ="deptNo != null">
and deptno= #{deptNo}
</when>
<when test ="empName != null">
and ename= #{empName}
</when>
<otherwise>
and hiredate > #{hireDate}
</otherwise>
</choose>
</select>
</mapper>
七.持久层实现类设计
1).在src目录下创建包
包名:cn.jbit.mybatis092901.dao.impl
2).在包下创建实现类
实现类名:EmpDaoImpl.java
实现类中的内容:
/**
* 为了使用代码看起来清晰,SqlSession的获取都使用工具类
*/
@Override
public void insertEmp(Emp emp) {
String resource = "mybatis-config.xml";
Reader reader = null;
SqlSessionFactory factory = null;
SqlSession session = null;
try {
reader = Resources.getResourceAsReader(resource);
SqlSessionFactoryBuilder builder = new SqlSessionFactoryBuilder();
factory = builder.build(reader);
session = factory.openSession();
List<Emp> empList = new ArrayList();
empList = session.selectList("cn.jbit.mybatis092901.dao.IEmpDao.findEmpByExampleChoose",emp);
} catch (Exception e1) {
e1.printStackTrace();
}finally {
session.close();
}
}
八、在配置文件中添加映射文件引用
1.在mybatis-fonfig.xml文件中添加mapper
<mappers>
<mapper resource="EmpDaoMapper.xml"/>
</mappers>
九、测试操作
1.在项目中创建test目录
/test
2.在test目录下创建包
cn.jbit.mybatis092901.dao
3.在包下创建测试类
类名:EmpDaoTest.java
内容:
public class EmpDaoTest {
//员工类的持久层实现
private static IEmpDao empDao = new EmpDaoImpl();
@Test
public void testChoose(){
Emp emp = new Emp();
emp.setDeptNo(9);
emp.setEmpName("张平U");
emp.setHireDate(new Date());
List<Emp> emps = empDao.findEmpByExampleChoose(emp);
printEmpList(emps);
}
private void printEmpList(List<Emp> empList){
for(Emp emp:empList){
printEmp(emp);
}
}
}
mybatis-使用choose动态拼接sql
时间: 2024-10-10 00:26:20
mybatis-使用choose动态拼接sql的相关文章
mybatis-使用if动态拼接sql
一.创建项目和数据库 项目名称:mybatis092901 数据库名称:mybatis0929 表名称:dept CREATE TABLE `dept` ( `deptNo` int(11) NOT NULL, `deptName` varchar(30) DEFAULT NULL, `location` varchar(30) DEFAULT NULL, PRIMARY KEY (`
动态拼接SQL计算公式
1 --模拟数据 2 IF OBJECT_ID('tempdb..#t')>0 DROP TABLE #t 3 SELECT * INTO #t 4 FROM ( 5 SELECT '1' id,2030 g,265 h, 830 k,'g*h+h*k' gs,0 tt 6 UNION ALL 7 SELECT '2' id,2030 g,0 h, 0 k,'g*4' gs,0 tt 8 UNION ALL 9 SELECT '3' id,2030 g,265 h, 0 k,'(g+h)*2'
java动态拼接sql语句并且执行时给sql语句的参数赋值
问题 在这里举一个例子,比如我要做一个多条件模糊查询,用户输入的时候有可能输入一个条件,也有可能输入两个条件,这时执行查询的sql语句就不确定了,但可以用动态拼接sql语句来解决这个问题. 解决方法 1.就拿我上面的那个多条件模糊查询为例,第一步是拼接sql语句,先定义一个通用的sql语句,String sql = "select * from user where 1 = 1 ";这里添加where 1= 1是一个小技巧,方便后面sql语句的拼接. String sql = &quo
mysql 存储过程动态拼接sql并执行赋值
CREATE DEFINER = CURRENT_USER PROCEDURE `NewProc`(in _xnb varchar(50)) BEGIN ## 定义变量 DECLARE _num FLOAT(14,6) DEFAULT 0; ## @表示全局变量 相当于php $ ## 拼接赋值 INTO 必须要用全局变量不然语句会报错 SET @strsql = CONCAT('SELECT SUM(',_xnb,') INTO @tnum FROM btc_user_coin'); ## 预
mybatis if test 相等的情况如何动态拼接sql
今天程序需要根据前台的传过来的状态判断在数据库里是取 where a>b 还是 a<b 还是 a=0 的情况 搞了一下午最后试了下 在if 里面拼接 #{status}=#{status} 一切ok了 详细代码如下 <if test=" status==1"> and inv.security_inventory < inv.actual_inventory and #{status} = #{status} </if> <if t
动态拼接SQL语句
1.参考官方文档 ? if:字符判断 ? choose (when, otherwise):分支选择 ? trim (where, set):字符串截取:其中where标签封装查询条件,set标签封装修改条件 ? foreach 2.if案例 1)在EmployeeMapper接口中添加一个方法: //携带了哪个字段,查询条件就带上哪个字段的值 public List<Employee> getEmployeeByConditionIf(Employee employee); 2).如果要写下
mybatis-使用where动态拼接sql
一.创建项目和数据库 项目名称:mybatis092901 数据库名称:mybatis0929 表名称:dept CREATE TABLE `dept` ( `deptNo` int(11) NOT NULL, `deptName` varchar(30) DEFAULT NULL, `location` varchar(30) DEFAULT NULL, PRIMARY KEY (`
mybatis-使用set动态拼接sql
一.创建项目和数据库 项目名称:mybatis092901 数据库名称:mybatis0929 表名称:dept CREATE TABLE `dept` ( `deptNo` int(11) NOT NULL, `deptName` varchar(30) DEFAULT NULL, `location` varchar(30) DEFAULT NULL, PRIMARY KEY (`
动态拼接SQL 语句
public T Get<T>(int id) { Type type = typeof(T); string columnStrings = string.Join(",", type.GetProperties().Select(p=>string.Format("[{0}]"))); string sql = string.Format("select {0} from [{1}] where id={2}", colum