MyBatis-Plus 是一个 MyBatis 的增强工具,在 MyBatis 的基础上只做增强不做改变,为简化开发、提高效率而生。本文主要介绍 Mybatis-Plus 的基本使用,相关的环境及软件信息如下:Spring Boot 2.6.12、Mybatis-Plus 3.5.2。

这里演示下 Mybatis-plus 的基本使用,工程目录结构如下:

主要配置如下:
<dependencies>
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-web</artifactId>
</dependency>
<dependency>
<groupId>com.baomidou</groupId>
<artifactId>mybatis-plus-boot-starter</artifactId>
<version>3.5.2</version>
</dependency>
<dependency>
<groupId>mysql</groupId>
<artifactId>mysql-connector-java</artifactId>
</dependency>
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-test</artifactId>
<scope>test</scope>
</dependency>
<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>
</dependencies>
<build>
<resources>
<resource>
<directory>src/main/java</directory>
<includes>
<include>**/*.xml</include>
</includes>
</resource>
<resource>
<directory>src/main/resources</directory>
</resource>
</resources>
</build>
spring:
datasource:
driver-class-name: com.mysql.cj.jdbc.Driver
url: jdbc:mysql://10.49.196.23:3306/test?useUnicode=true&characterEncoding=UTF-8
username: root
password: 123456
mybatis-plus:
configuration:
map-underscore-to-camel-case: true
log-impl: org.apache.ibatis.logging.stdout.StdOutImpl
<?xml version="1.0" encoding="utf-8"?>
<configuration debug="false">
<appender name="STDOUT" class="ch.qos.logback.core.ConsoleAppender">
<filter class="ch.qos.logback.classic.filter.ThresholdFilter">
<level>INFO</level>
</filter>
<encoder>
<pattern>%d %-5level [%thread] %logger[%L] -> %m%n</pattern>
</encoder>
</appender>
<root level="info">
<appender-ref ref="STDOUT" />
</root>
<logger name="com.abc.mapper" level="debug">
</logger>
<logger name="com.baomidou.mybatisplus" level="debug">
</logger>
</configuration>
package com.abc.config;
import com.baomidou.mybatisplus.annotation.DbType;
import com.baomidou.mybatisplus.extension.plugins.MybatisPlusInterceptor;
import com.baomidou.mybatisplus.extension.plugins.inner.PaginationInnerInterceptor;
import org.springframework.context.annotation.Bean;
import org.springframework.context.annotation.Configuration;
@Configuration
public class MybatisConfig {
@Bean
public MybatisPlusInterceptor mybatisPlusInterceptor() {
MybatisPlusInterceptor interceptor = new MybatisPlusInterceptor();
//分页插件
PaginationInnerInterceptor pageInterceptor = new PaginationInnerInterceptor();
//设置请求的页面大于最大页后操作,true调回到首页,false继续请求。默认false
pageInterceptor.setOverflow(false);
//单页分页条数限制,默认无限制
pageInterceptor.setMaxLimit(500L);
//设置数据库类型
pageInterceptor.setDbType(DbType.MYSQL);
interceptor.addInnerInterceptor(pageInterceptor);
return interceptor;
}
}
package com.abc.entity;
import com.baomidou.mybatisplus.annotation.IdType;
import com.baomidou.mybatisplus.annotation.TableId;
import com.baomidou.mybatisplus.annotation.TableName;
import lombok.Data;
import lombok.ToString;
import java.time.LocalDateTime;
@ToString
@Data
@TableName("a_student")
public class Student {
@TableId(type = IdType.AUTO)
private Long id;
private LocalDateTime createTime;
private LocalDateTime modifyTime;
private String name;
private Integer age;
private String homeAddress;
}
表 a_student 的字段与实体类的属性一一对应(表中字段使用下划线写法,实体类属性使用驼峰写法),字段 id 为自增字段。
package com.abc.mapper;
import com.abc.entity.Student;
import com.baomidou.mybatisplus.core.mapper.BaseMapper;
import org.apache.ibatis.annotations.Mapper;
import org.apache.ibatis.annotations.Param;
import java.util.List;
import java.util.Map;
@Mapper
public interface StudentMapper extends BaseMapper<Student> {
List<Student> select(@Param("name") String name, @Param("homeAddress") String homeAddress);
List<Map<String, Object>> select2(String name, String homeAddress);
}
Mybatis-Plus 的 BaseMapper 提供了基础的增删改查功能,如果不能满足需求,可以再定义额外的方法,对应的 XML 文件(StudentMapper.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.abc.mapper.StudentMapper">
<select id="select" resultType="com.abc.entity.Student">
select * from a_student where 1=1
<if test="name != null and name != ''">
and name like #{name}
</if>
<if test="homeAddress != null and homeAddress != ''">
and home_address like #{homeAddress}
</if>
</select>
<select id="select2" resultType="map">
select * from a_student where 1=1
<if test="param1 != null and param1 != ''">
and name like #{param1}
</if>
<if test="param2 != null and param2 != ''">
and home_address like #{param2}
</if>
</select>
</mapper>
package com.abc.service;
import com.abc.entity.Student;
import com.abc.mapper.StudentMapper;
import com.baomidou.mybatisplus.extension.service.impl.ServiceImpl;
import org.springframework.stereotype.Service;
import java.util.List;
import java.util.Map;
@Service
public class StudentService extends ServiceImpl<StudentMapper, Student> {
public List<Student> select(String name, String homeAddress) {
return baseMapper.select(name, homeAddress);
}
public List<Map<String, Object>> select2(String name, String homeAddress) {
return baseMapper.select2(name, homeAddress);
}
}
Mybatis-Plus 的 ServiceImpl 进一步封装了增删改查的功能,可以更好的满足业务需求;当然对于特定的业务需求也可以定义自己的方法。
package com.abc.mapper;
import com.abc.entity.Student;
import com.baomidou.mybatisplus.core.conditions.query.QueryWrapper;
import com.baomidou.mybatisplus.extension.plugins.pagination.Page;
import org.junit.Test;
import org.junit.runner.RunWith;
import org.slf4j.Logger;
import org.slf4j.LoggerFactory;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.boot.test.context.SpringBootTest;
import org.springframework.test.context.junit4.SpringRunner;
import java.time.LocalDateTime;
import java.util.ArrayList;
import java.util.List;
import java.util.Map;
@RunWith(SpringRunner.class)
@SpringBootTest
public class StudentMapperCase {
private static final Logger logger = LoggerFactory.getLogger(StudentMapperCase.class);
@Autowired
private StudentMapper studentMapper;
@Test
public void insert() {
Student student = new Student();
student.setCreateTime(LocalDateTime.now());
student.setName("李白");
student.setAge(30);
student.setHomeAddress("长安");
studentMapper.insert(student);
logger.info("id={}", student.getId());
}
@Test
public void update() {
Student student = new Student();
student.setId(261L);
student.setName("李白2");
studentMapper.updateById(student);
}
@Test
public void selectById() {
Student student = studentMapper.selectById(261L);
logger.info(student.toString());
}
@Test
public void select() {
List<Student> students = studentMapper.select("%李%", "%长%");
logger.info(students.toString());
}
@Test
public void selectForPage() {
Page<Student> page = new Page<>(1, 3);
QueryWrapper queryWrapper = new QueryWrapper();
queryWrapper.like("name", "%李%");
queryWrapper.like("home_address", "%长%");
Page<Student> result = studentMapper.selectPage(page, queryWrapper);
logger.info(result.getRecords().toString());
}
@Test
public void select2() {
List<Map<String, Object>> list = studentMapper.select2("%李%", "%长%");
logger.info(list.toString());
}
@Test
public void delete() {
List<Long> list = new ArrayList(){{
add(260L);
add(263L);
}};
studentMapper.deleteBatchIds(list);
}
}
package com.abc.service;
import com.abc.entity.Student;
import com.baomidou.mybatisplus.core.conditions.query.QueryWrapper;
import com.baomidou.mybatisplus.extension.plugins.pagination.Page;
import org.junit.Test;
import org.junit.runner.RunWith;
import org.slf4j.Logger;
import org.slf4j.LoggerFactory;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.boot.test.context.SpringBootTest;
import org.springframework.test.context.junit4.SpringRunner;
import java.time.LocalDateTime;
import java.util.ArrayList;
import java.util.List;
import java.util.Map;
@RunWith(SpringRunner.class)
@SpringBootTest
public class StudentServiceCase {
private static final Logger logger = LoggerFactory.getLogger(StudentServiceCase.class);
@Autowired
private StudentService studentService;
@Test
public void insert() {
Student student = new Student();
student.setCreateTime(LocalDateTime.now());
student.setName("李白");
student.setAge(30);
student.setHomeAddress("长安");
studentService.save(student);
logger.info("id={}", student.getId());
}
@Test
public void update() {
Student student = new Student();
student.setId(261L);
student.setName("杜甫");
studentService.saveOrUpdate(student);
}
@Test
public void selectById() {
Student student = studentService.getById(261L);
logger.info(student.toString());
}
@Test
public void select() {
List<Student> students = studentService.select("%李%", "%长%");
logger.info(students.toString());
}
@Test
public void selectForPage() {
Page<Student> page = new Page<>(1, 3);
QueryWrapper queryWrapper = new QueryWrapper();
queryWrapper.like("name", "%李%");
queryWrapper.like("home_address", "%长%");
Page<Student> result = studentService.page(page, queryWrapper);
logger.info(result.getRecords().toString());
}
@Test
public void select2() {
List<Map<String, Object>> list = studentService.select2("%李%", "%长%");
logger.info(list.toString());
}
@Test
public void delete() {
List<Long> list = new ArrayList(){{
add(260L);
add(263L);
}};
studentService.removeBatchByIds(list);
}
}
更多详细说明及使用方法请参考官网文档:https://baomidou.com/。
我正在学习如何使用Nokogiri,根据这段代码我遇到了一些问题:require'rubygems'require'mechanize'post_agent=WWW::Mechanize.newpost_page=post_agent.get('http://www.vbulletin.org/forum/showthread.php?t=230708')puts"\nabsolutepathwithtbodygivesnil"putspost_page.parser.xpath('/html/body/div/div/div/div/div/table/tbody/tr/td/div
我有一个Ruby程序,它使用rubyzip压缩XML文件的目录树。gem。我的问题是文件开始变得很重,我想提高压缩级别,因为压缩时间不是问题。我在rubyzipdocumentation中找不到一种为创建的ZIP文件指定压缩级别的方法。有人知道如何更改此设置吗?是否有另一个允许指定压缩级别的Ruby库? 最佳答案 这是我通过查看rubyzip内部创建的代码。level=Zlib::BEST_COMPRESSIONZip::ZipOutputStream.open(zip_file)do|zip|Dir.glob("**/*")d
类classAprivatedeffooputs:fooendpublicdefbarputs:barendprivatedefzimputs:zimendprotecteddefdibputs:dibendendA的实例a=A.new测试a.foorescueputs:faila.barrescueputs:faila.zimrescueputs:faila.dibrescueputs:faila.gazrescueputs:fail测试输出failbarfailfailfail.发送测试[:foo,:bar,:zim,:dib,:gaz].each{|m|a.send(m)resc
很好奇,就使用rubyonrails自动化单元测试而言,你们正在做什么?您是否创建了一个脚本来在cron中运行rake作业并将结果邮寄给您?git中的预提交Hook?只是手动调用?我完全理解测试,但想知道在错误发生之前捕获错误的最佳实践是什么。让我们理所当然地认为测试本身是完美无缺的,并且可以正常工作。下一步是什么以确保他们在正确的时间将可能有害的结果传达给您? 最佳答案 不确定您到底想听什么,但是有几个级别的自动代码库控制:在处理某项功能时,您可以使用类似autotest的内容获得关于哪些有效,哪些无效的即时反馈。要确保您的提
假设我做了一个模块如下:m=Module.newdoclassCendend三个问题:除了对m的引用之外,还有什么方法可以访问C和m中的其他内容?我可以在创建匿名模块后为其命名吗(就像我输入“module...”一样)?如何在使用完匿名模块后将其删除,使其定义的常量不再存在? 最佳答案 三个答案:是的,使用ObjectSpace.此代码使c引用你的类(class)C不引用m:c=nilObjectSpace.each_object{|obj|c=objif(Class===objandobj.name=~/::C$/)}当然这取决于
我正在尝试使用ruby和Savon来使用网络服务。测试服务为http://www.webservicex.net/WS/WSDetails.aspx?WSID=9&CATID=2require'rubygems'require'savon'client=Savon::Client.new"http://www.webservicex.net/stockquote.asmx?WSDL"client.get_quotedo|soap|soap.body={:symbol=>"AAPL"}end返回SOAP异常。检查soap信封,在我看来soap请求没有正确的命名空间。任何人都可以建议我
关闭。这个问题是opinion-based.它目前不接受答案。想要改进这个问题?更新问题,以便editingthispost可以用事实和引用来回答它.关闭4年前。Improvethisquestion我想在固定时间创建一系列低音和高音调的哔哔声。例如:在150毫秒时发出高音调的蜂鸣声在151毫秒时发出低音调的蜂鸣声200毫秒时发出低音调的蜂鸣声250毫秒的高音调蜂鸣声有没有办法在Ruby或Python中做到这一点?我真的不在乎输出编码是什么(.wav、.mp3、.ogg等等),但我确实想创建一个输出文件。
我在我的项目目录中完成了compasscreate.和compassinitrails。几个问题:我已将我的.sass文件放在public/stylesheets中。这是放置它们的正确位置吗?当我运行compasswatch时,它不会自动编译这些.sass文件。我必须手动指定文件:compasswatchpublic/stylesheets/myfile.sass等。如何让它自动运行?文件ie.css、print.css和screen.css已放在stylesheets/compiled。如何在编译后不让它们重新出现的情况下删除它们?我自己编译的.sass文件编译成compiled/t
我想将html转换为纯文本。不过,我不想只删除标签,我想智能地保留尽可能多的格式。为插入换行符标签,检测段落并格式化它们等。输入非常简单,通常是格式良好的html(不是整个文档,只是一堆内容,通常没有anchor或图像)。我可以将几个正则表达式放在一起,让我达到80%,但我认为可能有一些现有的解决方案更智能。 最佳答案 首先,不要尝试为此使用正则表达式。很有可能你会想出一个脆弱/脆弱的解决方案,它会随着HTML的变化而崩溃,或者很难管理和维护。您可以使用Nokogiri快速解析HTML并提取文本:require'nokogiri'h
我想为Heroku构建一个Rails3应用程序。他们使用Postgres作为他们的数据库,所以我通过MacPorts安装了postgres9.0。现在我需要一个postgresgem并且共识是出于性能原因你想要pggem。但是我对我得到的错误感到非常困惑当我尝试在rvm下通过geminstall安装pg时。我已经非常明确地指定了所有postgres目录的位置可以找到但仍然无法完成安装:$envARCHFLAGS='-archx86_64'geminstallpg--\--with-pg-config=/opt/local/var/db/postgresql90/defaultdb/po