SpringBoot数据访问之整合mybatis注解版
SpringBoot数据访问之整合mybatis注解版
mybatis注解版:
贴心链接:Github
在网页下方,找到快速开始文档
上述链接方便读者查找。
通过快速开始文档,搭建环境:
创建数据库:
use vuesite;
CREATE TABLE city
(
id INT PRIMARY KEY auto_increment,
name VARCHAR(255),
state VARCHAR(255),
country VARCHAR(255)
);

创建实体类:
package com.xbhog.pojo;
import lombok.Data;
@Data
public class City {
private Long id;
private String name;
private String state;
private String country;
}
创建Mapper:
创建CityMapper并采用注解的方式实现sql映射的问题:
package com.xbhog.Mapper;
import com.xbhog.pojo.City;
import org.apache.ibatis.annotations.Mapper;
import org.apache.ibatis.annotations.Select;
@Mapper
public interface CityMapper {
@Select("select * from user where id = #{id}")
public City getCityId(Long id);
}
创建Service:
package com.xbhog.service;
import com.xbhog.Mapper.CityMapper;
import com.xbhog.pojo.City;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.stereotype.Service;
@Service
public class CityService {
@Autowired
CityMapper cityMapper;
public City getCityId(Long id){
return cityMapper.getCityId(id);
}
}
使用Service注解声明,并将该类加入到容器中,方便后面调用,在service层调用Mapper层的方法。
创建Controller:
import com.xbhog.pojo.City;
import com.xbhog.service.CityService;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.stereotype.Controller;
import org.springframework.web.bind.annotation.GetMapping;
import org.springframework.web.bind.annotation.RequestParam;
import org.springframework.web.bind.annotation.ResponseBody;
import javax.annotation.Resource;
@Controller
public class Mycontro {
@Autowired
CityService cityService;
@ResponseBody
@GetMapping("/city")
public City getCity(@RequestParam("id") Long id){
return cityService.getCityId(id);
}
}
增加数据库信息:

测试:

mybatis混合版:
我们在CItyMapper中添加一个方法:
package com.xbhog.Mapper;
import com.xbhog.pojo.City;
import org.apache.ibatis.annotations.Mapper;
import org.apache.ibatis.annotations.Select;
import java.util.List;
@Mapper
public interface CityMapper {
@Select("select * from city where id = #{id}")
public City getCityId(Long id);
public void addCity(City city);
}
这个方法我们采用配置文件来绑定。
创建CityMapper.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="com.xbhog.Mapper.CityMapper">
<insert id="addCity" parameterType="com.xbhog.pojo.City">
insert into city(`name`,`state`,`country`) values (#{name},#{state},#{country});
</insert>
</mapper>
其中命名空间与CityMapper要对应,进行插入操作。
在Service层增加方法:
package com.xbhog.service;
import com.xbhog.Mapper.CityMapper;
import com.xbhog.pojo.City;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.stereotype.Service;
@Service
public class CityService {
@Autowired
CityMapper cityMapper;
public void addCity(City city){
cityMapper.addCity(city);
}
}
在Controller中增加方法:
import com.xbhog.pojo.City;import com.xbhog.service.CityService;import org.springframework.beans.factory.annotation.Autowired;import org.springframework.stereotype.Controller;import org.springframework.web.bind.annotation.GetMapping;import org.springframework.web.bind.annotation.PostMapping;import org.springframework.web.bind.annotation.RequestParam;import org.springframework.web.bind.annotation.ResponseBody;import javax.annotation.Resource;@Controllerpublic class Mycontro { @Autowired CityService cityService; @ResponseBody @PostMapping("/add") public City addcity(City city){ cityService.addCity(city); return city; }}
通过返回的city来查看信息是否正确。
测试:
我们通过PostMan来发送请求信息进行测试。
请求的方式为Post,url就是我们Controller中的add请求。post提交的参数:name、state、country。
会自动封装为City。

从上图可以发现,我们的id是Null,怎么样让添加后的数据返回id呢,在Mybatis中有useGeneratedKeys自增主键,自增主键的名字叫id。
这样添加进去的数据就会将id返回给传入的city中的id。
<insert id="addCity" parameterType="com.xbhog.pojo.City" useGeneratedKeys="true" keyProperty="id"> insert into city(`name`,`state`,`country`) values (#{name},#{state},#{country});</insert>
也可以采用注解的方式实现:
import com.xbhog.pojo.City;import org.apache.ibatis.annotations.Insert;import org.apache.ibatis.annotations.Mapper;import org.apache.ibatis.annotations.Options;import org.apache.ibatis.annotations.Select;import java.util.List;@Mapperpublic interface CityMapper { @Select("select * from city where id = #{id}") public City getCityId(Long id); @Insert("insert into city(`name`,`state`,`country`) values (#{name},#{state},#{country})") @Options(useGeneratedKeys = true,keyProperty = "id") public void addCity(City city);}
public City addcity(City city){ //city -->id有值了 cityService.addCity(city); return city; }
查看效果:

参考文献:
官网:Github
结束:
如果你看到这里或者正好对你有所帮助,希望能点个关注或者推荐,感谢;
有错误的地方,欢迎在评论指出,作者看到会进行修改。
SpringBoot数据访问之整合mybatis注解版的更多相关文章
- SpringBoot数据访问之整合Mybatis配置文件
环境搭建以及前置知识回顾 SpringBoot中有两种start的形式: 官方:spring-boot-starter-* 第三方:*-spring-boot-starter Mybatis属于第三方 ...
- SpringBoot整合Mybatis注解版---update出现org.apache.ibatis.binding.BindingException: Parameter 'XXX' not found. Available parameters are [arg1, arg0, param1, param2]
SpringBoot整合Mybatis注解版---update时出现的问题 问题描述: 1.sql建表语句 DROP TABLE IF EXISTS `department`; CREATE TABL ...
- java框架之SpringBoot(9)-数据访问及整合MyBatis
简介 对于数据访问层,无论是 SQL 还是 NOSQL,SpringBoot 默认采用整合 SpringData 的方式进行统一处理,添加了大量的自动配置,引入了各种 Template.Reposit ...
- Spring Boot数据访问之整合Mybatis
在Mybatis整合Spring - 池塘里洗澡的鸭子 - 博客园 (cnblogs.com)中谈到了Spring和Mybatis整合需要整合的点在哪些方面,需要将Mybatis中数据库连接池等相关对 ...
- SpringBoot整合MyBatis(注解版)
详情可以参考Mybatis官方文档 http://www.mybatis.org/spring-boot-starter/mybatis-spring-boot-autoconfigure/ (1). ...
- 【串线篇】SpringBoot数据访问【数据源/mybatis/指定映射文件位置】
一.配置数据源 1.1.jdbc版本 JDBC(.tomcat.jdbc.pool.DataSource作为数据源) <?xml version="1.0" encoding ...
- Spring Boot2 系列教程 (十三) | 整合 MyBatis (XML 版)
前言 如题,今天介绍 SpringBoot 与 Mybatis 的整合以及 Mybatis 的使用,之前介绍过了 SpringBoot 整合MyBatis 注解版的使用,上一篇介绍过 MyBatis ...
- SpringBoot Mybatis整合(注解版),SpringBoot集成Mybatis(注解版)
SpringBoot Mybatis整合(注解版),SpringBoot集成Mybatis(注解版) ================================ ©Copyright 蕃薯耀 2 ...
- springboot整合mybatis(注解)
springboot整合mybatis(注解) 1.pom.xml: <?xml version="1.0" encoding="UTF-8"?> ...
随机推荐
- 12Java进阶-IO与XML
1.File File:java.io.File:代表一个实际的文件或目录. 常用构造方法File file = new File("path"); 其它构造方法: File(St ...
- XIN队算法
XIN队算法 注:名称由莫队算法改编而来 从luogu搬过来了... \(newly\;upd:2021.7.8\) \(newly\;upd:2021.6.6\) OI至高算法,只要XIN队算法打满 ...
- VB 6.0不能加载MSCOMCTL.OCX的解决方法
问题场景:打开 VB 6项目时报错,不能加载 'C:\WINDOWS\system32\MSCOMCTL.OCX'--继续加载工程吗? 解决方法: 1.新建一个VB工程,然后按CTRL + T,选中 ...
- 大数据学习(13)—— HBase入门
从这一篇起,开始介绍HBase相关知识.还是一样,大数据的学习,获取官网知识很重要.官网看这里Apache HBase HBase简介 Apache HBase is the Hadoop datab ...
- Docker 网络解读
Docker 容器在运行时,会涉及多个容器相互连接,甚至与宿主机上的应用连接的问题.既然需要产生连接,那么就必然要依赖网络. 网络在Docker的技术体系中,是一个不容易搞清楚的要点.因此,希望您读完 ...
- 洛谷P5691题解
题面 本人用的是暴力分类讨论 + \(unordered\_map\) 存储,与所有的题解都不同. 因为 \(n \leq 6\) ,非常的小,并且我不想写 DFS,所以直接暴力分类讨论 \(n=1, ...
- PWN——uaf漏洞学习
PWN--uaf漏洞 1.uaf漏洞原理 在C语言中,我们通过malloc族函数进行堆块的分配,用free()函数进行堆块的释放.在释放堆块的过程中,如果没有将释放的堆块置空,这时候,就有可能出现us ...
- 4 剑指Offer53-在排序数组中查找数字
统计一个数字在排序数组中出现的次数. 示例 1: 输入: nums = [5,7,7,8,8,10], target = 8 输出: 2 示例 2: 输入: nums = [5,7,7,8,8,10 ...
- git 强制放弃本地修改(新增、删除文件)
本地修改了一些文件,其中包含修改.新增.删除的. 不需要了,想要丢弃,于是做了git check -- .操作,但是只放弃了修改的文件,新增和删除的仍然没有恢复. 于是百度了下,使用如下命令: git ...
- UserControl 加载动画
效果:实现加载UserControl动画效果 cs代码如下 public class BaseModuleView : UserControl { private TranslateTransform ...