mybatis基础操作(一)

mybatis介绍

mybatis为半自动的ORM框架

ORM:对象关系映射,将java中的一个对象与数据表中的一行记录一一对应。支持自定义sql,存储过程。

对原有jdbc进行封装,几乎消除所有jdbc代码,让开发者只需关注sql本身。

支持xml和注解配置方式自定义完成ORM操作。

mybatis框架部署

pom文件导入:

        <!-- https://mvnrepository.com/artifact/mysql/mysql-connector-java --><dependency><groupId>mysql</groupId><artifactId>mysql-connector-java</artifactId><version>8.0.28</version></dependency><!-- https://mvnrepository.com/artifact/org.mybatis/mybatis --><dependency><groupId>org.mybatis</groupId><artifactId>mybatis</artifactId><version>3.5.11</version></dependency><!-- https://mvnrepository.com/artifact/org.projectlombok/lombok --><dependency><groupId>org.projectlombok</groupId><artifactId>lombok</artifactId><version>1.18.24</version><scope>provided</scope></dependency><dependency><groupId>junit</groupId><artifactId>junit</artifactId><version>4.12</version><scope>test</scope></dependency>

创建mybatis-config配置文件:

<?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>
​
</configuration>

在mybatis-config配文件中配置数据库信息:

<configuration><!--    配置数据库链接信息,可配置多个,default用来指定默认用哪个   --><environments default="mysql"><environment id="mysql"><!--       transactionManager:配置数据库管理方式     --><transactionManager type="JDBC"></transactionManager><!--       transactionManager:配置数据库连接信息     --><dataSource type="POOLED"><property name="driver" value="com.mysql.cj.jdbc.Driver"/><property name="url" value="jdbc:mysql://xxx.xxx.xxx.xxx:3306/mysql?characterEncoding=utf-8"/><property name="username" value="xxxxx"/><property name="password" value="xxxxxxx"/></dataSource></environment></environments>
</configuration>

mybatis的简单使用

创建表:

CREATE TABLE tb_students(sid INT PRIMARY KEY AUTO_INCREMENT,stu_num CHAR(5) NOT NULL UNIQUE,stu_name VARCHAR(20) NOT NULL,stu_gender CHAR(2) NOT NULL,stu_age INT NOT NULL
);

创建实体类:

@Data
@AllArgsConstructor
@NoArgsConstructor
@ToString
public class Student {private int stuId;private String stuNum;private String stuName;private String stuGender;private int stuAge;
}

创建Dao接口:

public interface StudentDao {public int insertStudent(Student student);
}

创建dao接口的映射文件:

resource目录下,新建名为mappers的文件夹,在mappers中新建名为StudentMapper.xml的有映射文件:

<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE mapperPUBLIC "-//mybatis.org//DTD Mapper 3.0//EN""http://mybatis.org/dtd/mybatis-3-mapper.dtd">
<!--namespace对应完整的Dao类路径-->
<mapper namespace="com.kingyal.dao.StudentDao">
<!-- id对应方法名;parameterTpye对应参数的类型,可省略不写   --><insert id="insertStudent" parameterType="com.kingyal.pojo.Student">insert into tb_students(stu_num,stu_name,stu_gender,stu_age)values(#{stuNum},#{stuName},#{stuGender},#{stuAge});</insert>
​
</mapper>

将映射文件添加到mybatis-config配置文件中:

<mappers ><mapper resource="mappers/StudentMapper.xml"></mapper>
</mappers>

测试:

public class StudentDaoTest {@Testpublic void insertStudent() throws IOException {// 获取数据库配置信息InputStream inputStream = Resources.getResourceAsStream("mybatis-config.xml");// builderSqlSessionFactoryBuilder builder = new SqlSessionFactoryBuilder();// 会话工厂SqlSessionFactory factory = builder.build(inputStream);// 会话链接SqlSession sqlSession = factory.openSession();// 获取Dao接口StudentDao studentDao = sqlSession.getMapper(StudentDao.class);System.out.println(studentDao);// 插入操作int i = studentDao.insertStudent(new Student(0, "0001", "zhangsan", "M", 18));System.out.println(i);sqlSession.commit();}
}

mybatis的CRUD操作

在上述简单使用的基础上,继续补充crud操作,包含添加操作,删除操作,修改操作,查询操作所有,查询一条记录,多参数查询,查询记录数,主键回填等。其中,在多参数查询时,在mybsatis中进行条件查询,如果DAO中只有一个简单类型或者字符串类型的参数,在Mapper配置中可以直接用#{xxx}直接获取;如果有一个对象类型的参数,在Mapper配置中可以直接用#{key}直接获取对象的执行属性,key必须是参数对象的属性,名字不能改变。如果有多个参数,则需要在DAO中可以通过@Param指定或者使用hashmap传参,也可以在map的sql中用arg或者param实现参数的传递。

具体实现如下:

a. 创建接口

public int insertStudent(Student student);
public int insertStudentAndUseGeneratedKey(Student student);
public int deleteStudent(int stuNum);
public int updateStudent(Student student);
public List<Student> selectAllStudents();
public List<Student> selectAllStudentsByResultMap();
public Student selectStudentByNum(int sutNum);
public List<Student> selectAllStudentsByHashMap(HashMap<String,Integer> hashMap);
public List<Student> selectAllStudentsByArgs(int start, int pageSize);
public List<Student> selectAllStudentsByPage(@Param("start") int start,@Param("pageSize") int page);
public int getCount();

b. 在StudentMapper.xml的接口文件中实现sql语句

<mapper namespace="com.kingyal.dao.StudentDao">
<!-- id对应方法名;parameterTpye对应参数的类型,可省略不写   --><insert id="insertStudent" parameterType="com.kingyal.pojo.Student">insert into tb_students(stu_num,stu_name,stu_gender,stu_age)values(#{stuNum},#{stuName},#{stuGender},#{stuAge});</insert>
<!--    useGeneratedKeys:添加操作是否需要回填生成的主键,keyProperty:指定回填的主键值赋值给实体对象的哪个属性--><insert id="insertStudentAndUseGeneratedKey" useGeneratedKeys="true" keyProperty="stuId">insert into tb_students(stu_num,stu_name,stu_gender,stu_age)values(#{stuNum},#{stuName},#{stuGender},#{stuAge});</insert><delete id="deleteStudent">delete from tb_students where stu_num=#{stuNum};</delete>
​<update id="updateStudent">update tb_students setstu_name=#{stuName},stu_gender=#{stuGender},stu_age=#{stuAge}where stu_num=#{stuNum};</update>
<!-- select 方式1   -->
<!--resultType:返回的对象;resultSets:指定当前操作的集合类型,通常省略--><select id="selectAllStudent" resultType="com.kingyal.pojo.Student" resultSets="java.util.List">selectsid as stuId,stu_num as stuNum,stu_name as stuName,stu_gender as stuGender,stu_age as stuAgefrom tb_students;</select><!-- select 方式2,建议用方式2   -->
<!--  resultMap 标签用于定义实体类与数据表的映射关系(ORM)  --><resultMap id="StudentMap" type="com.kingyal.pojo.Student"><id column="sid" property="stuId"></id><result column="stu_num" property="stuNum"></result><result column="stu_name" property="stuName"></result><result column="stu_gender" property="stuGender"></result><result column="stu_age" property="stuAge"></result></resultMap><select id="selectAllStudentsByResultMap" resultMap="StudentMap">select sid,stu_num,stu_name,stu_gender,stu_age from tb_students;</select><select id="selectStudentByNum" resultMap="StudentMap">select sid,stu_num,stu_name,stu_gender,stu_age from tb_studentswhere stu_num=#{stuNum};</select><select id="selectAllStudentsByHashMap" resultMap="StudentMap">select sid,stu_num,stu_name,stu_gender,stu_age from tb_studentslimit #{start}, #{pageSize};</select>
<!-- arg0和arg1也可以替换为param1和param2   --><select id="selectAllStudentsByArgs" resultMap="StudentMap">select sid,stu_num,stu_name,stu_gender,stu_age from tb_studentslimit #{arg0}, #{arg1};</select><select id="selectAllStudentsByPage" resultMap="StudentMap">select sid,stu_num,stu_name,stu_gender,stu_age from tb_studentslimit #{start}, #{pageSize};</select><select id="getCount"  resultType="int">select count(1) from tb_students;</select>
</mapper>

c. 测试

public class StudentDaoTest {
​@Testpublic void insertStudent() throws IOException {// 获取数据库配置信息InputStream inputStream = Resources.getResourceAsStream("mybatis-config.xml");// builderSqlSessionFactoryBuilder builder = new SqlSessionFactoryBuilder();// 会话工厂SqlSessionFactory factory = builder.build(inputStream);// 会话链接SqlSession sqlSession = factory.openSession();// 实体对象Student student = new Student(0, "00013", "wang13", "M", 29);StudentDao studentDao = sqlSession.getMapper(StudentDao.class);System.out.println(studentDao);// 插入操作int i = studentDao.insertStudent(student);sqlSession.commit();
​Assert.assertEquals(1, i);}
​@Testpublic void insertStudentAndUseGeneratedKey() throws IOException {// 获取数据库配置信息InputStream inputStream = Resources.getResourceAsStream("mybatis-config.xml");// builderSqlSessionFactoryBuilder builder = new SqlSessionFactoryBuilder();// 会话工厂SqlSessionFactory factory = builder.build(inputStream);// 会话链接SqlSession sqlSession = factory.openSession();// 实体对象Student student = new Student(0, "00014", "wang14", "M", 29);StudentDao studentDao = sqlSession.getMapper(StudentDao.class);System.out.println(studentDao);// 插入操作int i = studentDao.insertStudentAndUseGeneratedKey(student);sqlSession.commit();System.out.println(student);System.out.println(i);
​Assert.assertEquals(1, i);}
​@Testpublic void deleteStudent() throws IOException {// 获取数据库配置信息InputStream inputStream = Resources.getResourceAsStream("mybatis-config.xml");// builderSqlSessionFactoryBuilder builder = new SqlSessionFactoryBuilder();// 会话工厂SqlSessionFactory factory = builder.build(inputStream);// 会话链接SqlSession sqlSession = factory.openSession();// 实体对象StudentDao studentDao = sqlSession.getMapper(StudentDao.class);int i = studentDao.deleteStudent(00001);sqlSession.commit();
​Assert.assertEquals(1, i);}
​@Testpublic void updateStudent() throws IOException {// 获取数据库配置信息InputStream inputStream = Resources.getResourceAsStream("mybatis-config.xml");// builderSqlSessionFactoryBuilder builder = new SqlSessionFactoryBuilder();// 会话工厂SqlSessionFactory factory = builder.build(inputStream);// 会话链接SqlSession sqlSession = factory.openSession();// 实体对象StudentDao studentDao = sqlSession.getMapper(StudentDao.class);// 待更新的实体Student student = new Student(0, "00003", "wang3", "M", 29);int i = studentDao.updateStudent(student);sqlSession.commit();
​Assert.assertEquals(1, i);}
​@Testpublic void selectAllStudent() throws IOException {// 获取数据库配置信息InputStream inputStream = Resources.getResourceAsStream("mybatis-config.xml");// builderSqlSessionFactoryBuilder builder = new SqlSessionFactoryBuilder();// 会话工厂SqlSessionFactory factory = builder.build(inputStream);// 会话链接SqlSession sqlSession = factory.openSession();// 实体对象StudentDao studentDao = sqlSession.getMapper(StudentDao.class);// 待更新的实体List<Student> studentList = studentDao.selectAllStudents();sqlSession.commit();System.out.println(studentList.toString());Assert.assertNotEquals(0, studentList.size());}
​@Testpublic void selectAllStudentsByResultMap() throws IOException {// 获取数据库配置信息InputStream inputStream = Resources.getResourceAsStream("mybatis-config.xml");// builderSqlSessionFactoryBuilder builder = new SqlSessionFactoryBuilder();// 会话工厂SqlSessionFactory factory = builder.build(inputStream);// 会话链接SqlSession sqlSession = factory.openSession();// 实体对象StudentDao studentDao = sqlSession.getMapper(StudentDao.class);// 待更新的实体List<Student> studentList = studentDao.selectAllStudentsByResultMap();sqlSession.commit();for (Student s : studentList) {System.out.println(s);}Assert.assertNotEquals(0, studentList.size());}
​@Testpublic void selectStudentByNum() throws IOException {// 获取数据库配置信息InputStream inputStream = Resources.getResourceAsStream("mybatis-config.xml");// builderSqlSessionFactoryBuilder builder = new SqlSessionFactoryBuilder();// 会话工厂SqlSessionFactory factory = builder.build(inputStream);// 会话链接SqlSession sqlSession = factory.openSession();// 实体对象StudentDao studentDao = sqlSession.getMapper(StudentDao.class);// 待更新的实体Student student = studentDao.selectStudentByNum(00001);sqlSession.commit();System.out.println(student);Assert.assertNotNull(student);}
​@Testpublic void selectAllStudentsByHashMap() throws IOException {// 获取数据库配置信息InputStream inputStream = Resources.getResourceAsStream("mybatis-config.xml");// builderSqlSessionFactoryBuilder builder = new SqlSessionFactoryBuilder();// 会话工厂SqlSessionFactory factory = builder.build(inputStream);// 会话链接SqlSession sqlSession = factory.openSession();// 实体对象StudentDao studentDao = sqlSession.getMapper(StudentDao.class);HashMap<String, Integer> hashMap = new HashMap<String, Integer>();hashMap.put("start", 1);hashMap.put("pageSize", 5);// 待更新的实体List<Student> studentList = studentDao.selectAllStudentsByHashMap(hashMap);sqlSession.commit();for (Student s : studentList) {System.out.println(s);}Assert.assertNotEquals(0, studentList.size());}
​@Testpublic void selectAllStudentsByArgs() throws IOException {// 获取数据库配置信息InputStream inputStream = Resources.getResourceAsStream("mybatis-config.xml");// builderSqlSessionFactoryBuilder builder = new SqlSessionFactoryBuilder();// 会话工厂SqlSessionFactory factory = builder.build(inputStream);// 会话链接SqlSession sqlSession = factory.openSession();// 实体对象StudentDao studentDao = sqlSession.getMapper(StudentDao.class);// 待更新的实体List<Student> studentList = studentDao.selectAllStudentsByArgs(1, 5);sqlSession.commit();for (Student s : studentList) {System.out.println(s);}Assert.assertNotEquals(0, studentList.size());}@Testpublic void selectAllStudentsByPage() throws IOException {// 获取数据库配置信息InputStream inputStream = Resources.getResourceAsStream("mybatis-config.xml");// builderSqlSessionFactoryBuilder builder = new SqlSessionFactoryBuilder();// 会话工厂SqlSessionFactory factory = builder.build(inputStream);// 会话链接SqlSession sqlSession = factory.openSession();// 实体对象StudentDao studentDao = sqlSession.getMapper(StudentDao.class);// 待更新的实体List<Student> studentList = studentDao.selectAllStudentsByPage(1, 5);sqlSession.commit();for (Student s : studentList) {System.out.println(s);}Assert.assertNotEquals(0, studentList.size());}
​@Testpublic void getCount() throws IOException {// 获取数据库配置信息InputStream inputStream = Resources.getResourceAsStream("mybatis-config.xml");// builderSqlSessionFactoryBuilder builder = new SqlSessionFactoryBuilder();// 会话工厂SqlSessionFactory factory = builder.build(inputStream);// 会话链接SqlSession sqlSession = factory.openSession();// 实体对象StudentDao studentDao = sqlSession.getMapper(StudentDao.class);// 待更新的实体int count = studentDao.getCount();System.out.println(count);Assert.assertNotEquals(0, count);}
}

本文来自互联网用户投稿,该文观点仅代表作者本人,不代表本站立场。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如若转载,请注明出处:http://www.mzph.cn/news/665206.shtml

如若内容造成侵权/违法违规/事实不符,请联系多彩编程网进行投诉反馈email:809451989@qq.com,一经查实,立即删除!

相关文章

如何在 Mac 上重置网络设置

如何在 Mac 上重置网络设置 Mac 几乎在所有时间都非常可靠&#xff0c;但有时您在连接到互联网时可能会遇到困难或浏览速度缓慢。 互联网可能在您的其他设备上正常工作&#xff0c;这可能很烦人。 通常&#xff0c;问题的原因是什么并不明显&#xff0c;甚至根本不存在。 如果…

面试数据结构与算法总结分类+leetcode题目目录【基础版】

&#x1f9e1;&#x1f9e1;&#x1f9e1;算法题目总结&#xff1a; 这里为大家总结数据结构与算法的题库目录&#xff0c;如果已经解释过的题目会标注链接更新&#xff0c;方便查看。 数据结构概览 Array & String 大家对这两类肯定比较清楚的&#xff0c;同时这也是面试…

Java基础—反射

Java基础-反射 前置知识动态语言JVM堆Java引用变量类型编译时类型运行时类型举栗特殊情况 RRTI概念为什么需要RTTI例子 Class类对象前置知识类加载器概念作用 Class类对象的概念Class类对象的总结 总结一下前置知识 反射基础概念为什么要学反射我需要学到什么程度 反射的基础内…

GMT绘图笔记

(1)图框设置。在利用GMT绘制图件时&#xff0c;需要设置边框的类型&#xff0c;字体的大小&#xff0c;标记距离边框的距离。主要涉及的参数有&#xff1a; gmt set MAP_FRAME_TYPE plain/fancy 可以调整边框为火车轨道或者线段。 (2)调整图框的粗细&#xff1a;主要是包含有…

GoogleTest 单元测试

假设我们有两个函数 complexFunction 和 helperFunction&#xff0c;其中 complexFunction 调用了 helperFunction。我们将编写测试 complexFunction 的单元测试&#xff0c;并在调用 helperFunction 的地方打桩。 // 复杂函数示例 int helperFunction(int x) {return x * 2; …

openssl自签名CA根证书、服务端和客户端证书生成并模拟单向/双向证书验证

1. 生成根证书 1.1 生成CA证书私钥 openssl genrsa -aes256 -out ca.key 2048 1.2 取消密钥的密码保护 openssl rsa -in ca.key -out ca.key 1.3 生成根证书签发申请文件(csr文件) openssl req -new -sha256 -key ca.key -out ca.csr -subj "/CCN/STFJ/LXM/ONONE/OU…

WiFi测试的核心思路和主要工具

目录 性能&#xff1a; 最主要的测试工具是2个&#xff1a;Iperf&#xff0c;Chariot 测试setup&#xff1a;OTA VS Cable&#xff1a; 测试数据类型 TCP VS UDP&#xff1a; 抓包工具&#xff1a;Macbook Wireshark&#xff1a; 功能&#xff1a; Wi-Fi Alliance tes…

解决vue3+ts打包,ts类型检查报错导致打包失败,goview打包报错options

最近拉的开源大屏项目goview&#xff0c;在打包的过程中一直报Ts类型报错导致打包失败&#xff0c;项目的打包命令为&#xff1a; “build”: “vue-tsc --noEmit && vite build” 是因为 vue-tsc --noEmit 是 TypeScript 编译器&#xff08;tsc&#xff09;的命令&…

Ubuntu 22.04 上安装和使用 Go

1.下载  All releases - The Go Programming Language //https://golang.google.cn/dl/wget https://golang.google.cn/dl/go1.21.6.linux-amd64.tar.gz 2.在下载目录下执行&#xff0c;现在&#xff0c;使用以下命令将文件提取到 “/usr/local ” 位置 sudo tar -C /usr/…

Mov转MP4怎么转换?如何播放mov视频?

MOV文件格式的使用场景 MOV文件格式以其支持多种媒体数据类型的特性而闻名&#xff0c;包括视频、音频、文本、动画等。它常用于存储包含视频剪辑、电影、音频轨道等多媒体元素的文件。由于其在质量和编辑方面的优越性&#xff0c;MOV文件在电影制作、广告宣传、多媒体演示等领…

MySQL篇----第三篇

系列文章目录 文章目录 系列文章目录前言一、InnoDB与MyISAM的区别二、索引三、常见索引原则有前言 前些天发现了一个巨牛的人工智能学习网站,通俗易懂,风趣幽默,忍不住分享一下给大家。点击跳转到网站,这篇文章男女通用,看懂了就去分享给你的码吧。 一、InnoDB与MyISAM…

【华为】GRE VPN 实验配置

【华为】GRE VPN 实验配置 前言报文格式 实验需求配置思路配置拓扑GRE配置步骤R1基础配置GRE 配置 ISP_R2基础配置 R3基础配置GRE 配置 PCPC1PC2 抓包检查OSPF建立GRE隧道建立 配置文档 前言 VPN &#xff1a;&#xff08;Virtual Private Network&#xff09;&#xff0c;即“…

头歌C++之函数应用

目录 第1关:编写函数Inc使实参的值加1 本关必读 本关任务 测试说明 第2关:编写内联函数求圆的面积 本关必读 本关任务 测试说明 第3关:编写内联函数求两整数的较小值 本关必读 本关任务

【京东云新品发布月刊】2024年1月产品动态来啦

1&#xff09;【莫奈可视化平台】新品上线 京东莫奈可视化平台通过自由拖拽、图形化编辑、所见即所得的方式&#xff0c;快速实现极致酷炫、直观清晰的视觉场景&#xff0c;将海量繁杂数据背后所蕴含的价值更直观、深层、全面的展现出来&#xff0c;辅助决策者合理决策。 2&a…

Redis集群环境搭建

Redis集群环境搭建 Redis主从复制 概念 主从复制是指将一台Redis服务器的数据&#xff0c;复制到其他的Redis服务器&#xff0c;前者称为主节点(master/leader)&#xff0c;后者称为从节点(slave/followe)&#xff1b;数据的复制是单向的&#xff0c;只能从主节点到从节点&a…

学成在线: 新增/修改课程计划

新增/修改课程计划(同接口) 界面原型 第一步: 在课程计划界面,点击添加章新增第一级课程计划,点击添加小节可以向某个第一级课程计划下添加小节 新增章/节成功后会自动发起请求刷新课程计划列表并且把新增的课程计划信息添加到数据库当中,新增的课程计划自动排序到最后 第二…

每日牛客一解

链接&#xff1a;登录—专业IT笔试面试备考平台_牛客网 来源&#xff1a;牛客网 题目描述 阿宁喜欢吃柠檬。已知每个柠檬酸度可能是 1 到 a&#xff0c;甜度可能是 0 到 b。 现在阿宁有 n 个柠檬&#xff0c;她要全部吃掉&#xff0c;会获得一定的快乐值。快乐值为每个柠檬…

CentOS 8 下载

https://mirrors.bfsu.edu.cn/centos/8-stream/isos/x86_64/ 下载地址&#xff1a; https://mirrors.bfsu.edu.cn/centos/8-stream/isos/x86_64/CentOS-Stream-8-x86_64-latest-dvd1.iso

喜报|博睿数据算力调度可观测平台荣获信通院“算力服务领航者计划”优秀案例

近日&#xff0c;中国通信标准化协会云计算标准和开源推进委员会2023年度工作总结会暨算力服务工作组成果发布会在京举行。会上&#xff0c;“2023年算力服务领航者计划优秀案例名单”正式公布&#xff0c;博睿数据的核心产品算力调度可观测平台 Bonree ONE成功入选&#xff0c…

数据结构----队列(Queue)的概念、队列的使用、模拟实现队列、循环队列、模拟实现循环队列、双端队列、模拟实现双端队列

文章目录 1 概念2 队列的使用3 队列模拟实现4 循环队列4.1 循环队列 概念4.1 循环队列模拟实现 5. 双端队列 (Deque)6 用队列实现栈7 用栈实现队列 1 概念 队列&#xff1a;只允许在一端进行插入数据操作&#xff0c;在另一端进行删除数据操作的特殊线性表&#xff0c;队列具有…