SpringBoot2----MyBaits-Plus完成CRUD操作
Posted 大忽悠爱忽悠
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了SpringBoot2----MyBaits-Plus完成CRUD操作相关的知识,希望对你有一定的参考价值。
MyBaits-Plus完成CRUD操作
整合MyBatis-Plus----导入依赖
<dependency>
<groupId>com.baomidou</groupId>
<artifactId>mybatis-plus-boot-starter</artifactId>
<version>3.4.3.1</version>
</dependency>
导入上面这个增强版依赖之后,下面两个依赖无需再次导入:
<dependency>
<groupId>org.mybatis.spring.boot</groupId>
<artifactId>mybatis-spring-boot-starter</artifactId>
<version>2.1.4</version>
</dependency>
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-jdbc</artifactId>
</dependency>
自动配置
- MybatisPlusAutoConfiguration 配置类,MybatisPlusProperties 配置项绑定。mybatis-plus:xxx 就是对mybatis-plus的定制
- SqlSessionFactory 自动配置好。底层是容器中默认的数据源,即使用spring容器中的数据源
- mapperLocations自动配置好的。有默认值。classpath*:/mapper/**/*.xml;任意包的类路径下的所有mapper文件夹下任意路径下的所有xml都是sql映射文件。建议以后sql映射文件,放在 mapper下
- 容器中也自动配置好了 SqlSessionTemplate
- @Mapper 标注的接口也会被自动扫描;建议直接 @MapperScan(“com.atguigu.admin.mapper”)批量扫描就行
使用plus的步骤
1.创建Dao接口继承BaseMapper,里面有默认的增删改查方法
@Mapper
public interface UserMapper extends BaseMapper<UserDao>{}
BaseMapper接口内容如下:
public interface BaseMapper<T> extends Mapper<T> {
int insert(T entity);
int deleteById(Serializable id);
int deleteByMap(@Param("cm") Map<String, Object> columnMap);
int delete(@Param("ew") Wrapper<T> queryWrapper);
int deleteBatchIds(@Param("coll") Collection<? extends Serializable> idList);
int updateById(@Param("et") T entity);
int update(@Param("et") T entity, @Param("ew") Wrapper<T> updateWrapper);
T selectById(Serializable id);
List<T> selectBatchIds(@Param("coll") Collection<? extends Serializable> idList);
List<T> selectByMap(@Param("cm") Map<String, Object> columnMap);
T selectOne(@Param("ew") Wrapper<T> queryWrapper);
Integer selectCount(@Param("ew") Wrapper<T> queryWrapper);
List<T> selectList(@Param("ew") Wrapper<T> queryWrapper);
List<Map<String, Object>> selectMaps(@Param("ew") Wrapper<T> queryWrapper);
List<Object> selectObjs(@Param("ew") Wrapper<T> queryWrapper);
<P extends IPage<T>> P selectPage(P page, @Param("ew") Wrapper<T> queryWrapper);
<P extends IPage<Map<String, Object>>> P selectMapsPage(P page, @Param("ew") Wrapper<T> queryWrapper);
}
2.封装数据库对应字段的实体类
@Data
public class UserDao
{
//注意:所有属性都应该在数据库中
//表明该字段在表中不存在,这样发送的sql查询,就不会带上这个字段
@TableField(exist = false)
String haha;
Integer id;
String name;
Integer age;
}
3.测试
@SpringBootTest
class CrudApplicationTests
{
@Autowired
UserMapper um;
@Test
void contextLoads()
{
UserDao usr = um.selectById(1);
System.out.println(usr);
}
}
默认查询的表名就是对应实体类的名字
Plus简化Service接口层和对应实现层的开发
service接口
public interface UserService extends IService<User> {}
继承的接口里面已经帮我们写好了很多方法
service接口的实现ImpI层
public class UserServiceImpI extends ServiceImpl<UserMapper, User> implements UserService{}
继承的ServiceImpl里面实现了大量复杂的增删改查方法,这样实现层我们页不需要写了
优点
只需要我们的Mapper继承 BaseMapper 就可以拥有crud能力
分页插件使用步骤
1.查询数据,封装为list集合
2.创建Page对象,规定显示第几页的数据,当前页显示几条记录
3.调用service实现类的page方法,将创建的Page对象传入,返回page是分页查询的结果
@GetMapping("/dynamic_table.html")
public String dynamic_table(@RequestParam(value = "pn",defaultValue = "1") Integer pn,Model model)
{
List<User> list = userService.list();
//分页查询数据===第几页,显示几条记录
Page<User> userPage=new Page<>(pn,5);
//返回的page是分页查询的结果
Page<User> page = userService.page(userPage, null);//第二个是查询条件
model.addAttribute("page",page);
return "table/dynamic_table";
}
4.给容器中注入一个分页插件
@Configuration
public class WebConfig implements WebMvcConfigurer
{
@Bean
public MybatisPlusInterceptor mybatisPlusInterceptor() {
MybatisPlusInterceptor interceptor = new MybatisPlusInterceptor();
interceptor.addInnerInterceptor(new PaginationInnerInterceptor(DbType.H2));
return interceptor;
}
}
5.页面分页显示结合thymeleaf模板引擎,取出值显示在页面上
<table class="display table table-bordered table-striped" id="dynamic-table">
<thead>
<tr>
<th>#</th>
<th>姓名</th>
<th>年龄</th>
</tr>
</thead>
<tbody>
<!--取值放入-->
<tr th:each="user ,stat : ${page.records}">
<td th:text="${stat.count}"></td>
<td th:text="${user.name}"></td>
<td th:text="${user.age}"></td>
</tr>
</tbody>
<tfoot>
<tr>
<th>#</th>
<th>嘿嘿嘿</th>
<th>嘻嘻嘻</th>
</tr>
</tfoot>
</table>
<div class="row-fluid">
<div class="span6">
<div class="dataTables_info" id="dynamic-table_info">当前第[[${page.current}]]页
总共[[${page.pages}]] 共 [[${page.total}]]条记录</div>
</div>
<div class="span6">
<div class="dataTables_paginate paging_bootstrap pagination">
<ul>
<li th:class="${page.current==1 ? 'prev disabled' : 'prev'} "><a th:href="@{/dynamic_table.html(pn=${page.current}-1)}">← 前一页</a></li>
<li th:class="${num==page.current ? 'active' : ''}" th:each="num: ${#numbers.sequence(1,page.pages)}">
<a th:href="@{/dynamic_table.html(pn=${num})}">
[[${num}]]
</a>
</li>
<li th:class="${page.current==page.pages ? 'next disabled' : 'next'}"><a th:href="@{/dynamic_table.html(pn=${page.current}+1)}">后一页 → </a></li>
</ul>
</div>
</div>
</div>
thymeleaf 内置工具用法示例和手册
CRUD删除功能实现
<table class="display table table-bordered" id="hidden-table-info">
<thead>
<tr>
<th>#</th>
<th>姓名</th>
<th class="hidden-phone">年龄</th>
</tr>
</thead>
<tbody>
<tr th:each="user ,stat : ${page.records}">
<td th:text="${stat.count}"></td>
<td th:text="${user.name}"></td>
<td th:text="${user.age}"></td>
<td><a class="btn btn-outline-danger"
th:href="@{/user/del/{name}(name=${user.name},pn=${page.current})}">删除</a></td>
</tr>
</tbody>
</table>
<div class="row-fluid">
<div class="span6">
<div class="dataTables_info" id="del">当前第[[${page.current}]]页
总共[[${page.pages}]] 共 [[${page.total}]]条记录</div>
</div>
<div class="span6">
<div class="dataTables_paginate paging_bootstrap pagination">
<ul>
<li th:class="${page.current==1 ? 'prev disabled' : 'prev'} "><a th:href="@{/dynamic_table.html(pn=${page.current}-1)}">← 前一页</a></li>
<li th:class="${num==page.current ? 'active' : ''}" th:each="num: ${#numbers.sequence(1,page.pages)}">
<a th:href="@{/dynamic_table.html(pn=${num})}">
[[${num}]]
</a>
</li>
<li th:class="${page.current==page.pages ? 'next disabled' : 'next'}"><a th:href="@{/dynamic_table.html(pn=${page.current}+1)}">后一页 → </a></li>
</ul>
</div>
</div>
</div>
thymeleaf模板引擎的具体语法参考下面链接
重定向携带参数,是将参数作为请求参数的形式拼接在url后面
@Controller
public class UserController
{
@Autowired
UserService userService;
@GetMapping("/user/del/{name}")
public String DelUser(@PathVariable("name") String name
, @RequestParam("pn")In以上是关于SpringBoot2----MyBaits-Plus完成CRUD操作的主要内容,如果未能解决你的问题,请参考以下文章