
Mybatis从入门到精通
川子的博客
Java工程师、Netty编程爱好者
展开
-
解决方法 If you want an embedded database (H2, HSQL or Derby), please put it on the classpath
场景Springboot 2.5.1集成 mybatis-plus-boot-starter 3.3.2 报错Consider the following: If you want an embedded database (H2, HSQL or Derby), please put it on the classpath. If you have database settings to be loaded from a particular profile you may need .原创 2021-06-24 21:04:30 · 16970 阅读 · 0 评论 -
Mybatis分页插件Pagehelper不生效的原因汇总
Pagehelper在SpringBoot2中的使用1、在pom文件正确引入pagehelper-spring-boot-starter <dependency> <groupId>com.github.pagehelper</groupId> <artifactId>pagehelper-spring-boot-starter</artifactId> .原创 2021-05-25 10:52:05 · 21226 阅读 · 6 评论 -
Mybatis详解(一)配置Mybatis集成SpringBoot
1、在pom.xml配置文件中引用常用的Jar包的坐标<?xml version="1.0" encoding="UTF-8"?><project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLoc...原创 2019-08-14 17:18:08 · 1095 阅读 · 0 评论 -
Mybatis详解(二)Mybatis XML方式的基本用法
1、使用XML方式MyBatis的真正强大之处在于它的映射语句,由于他的映射语句异常强大,映射器的XML文件就显得相对简单。而MyBatis3.0相比2.0版本的一个最大变化,就是支持使用接口的来调用方法。我们使用的是SqlSession通过命名空间调用MyBatis方法,我们需要用到命名空间和方法id组成的字符串来调用相应的方法。而当参数多于1个的时候,需要将参数放到一个Map对象中。...原创 2019-08-29 11:04:52 · 1663 阅读 · 1 评论 -
使用Mybatis的@MapKey注解返回Map集合案例
1、Mybatis@MapKey注解的使用场景在多值查询的时候,通常要把方法返回类型设置为Map<String,Object>类型,Mybatis为我们提供了另一种解决方式,通过K-V的形式将查询结果保存在Map中,这种实现方式只需要在方法上标注为@Mapkey即可。2、代码@Mapperpublic interface TbUserInfoMapper { ...原创 2019-08-29 14:25:11 · 11808 阅读 · 0 评论