本文主要介绍 Mybatis 的实际使用,相关的环境及软件信息如下:Mybatis 3.5.11。
这里使用 Maven 来构建样例工程,工程目录结构如下:

<dependency>
<groupId>org.mybatis</groupId>
<artifactId>mybatis</artifactId>
<version>3.5.11</version>
</dependency>
其他相关依赖如分页插件、日志登,根据需要引入:
<dependencies>
<dependency>
<groupId>org.mybatis</groupId>
<artifactId>mybatis</artifactId>
<version>3.5.11</version>
</dependency>
<!--分页插件-->
<dependency>
<groupId>com.github.pagehelper</groupId>
<artifactId>pagehelper</artifactId>
<version>5.3.2</version>
</dependency>
<dependency>
<groupId>mysql</groupId>
<artifactId>mysql-connector-java</artifactId>
<version>8.0.30</version>
</dependency>
<dependency>
<groupId>ch.qos.logback</groupId>
<artifactId>logback-classic</artifactId>
<version>1.2.11</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
<version>4.12</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.projectlombok</groupId>
<artifactId>lombok</artifactId>
<version>1.18.24</version>
<scope>provided</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>
View Code
<?xml version="1.0" encoding="UTF-8" ?>
<!DOCTYPE configuration
PUBLIC "-//mybatis.org//DTD Config 3.0//EN"
"https://mybatis.org/dtd/mybatis-3-config.dtd">
<configuration>
<settings>
<setting name="mapUnderscoreToCamelCase" value="true"/>
</settings>
<plugins>
<!--分页插件-->
<plugin interceptor="com.github.pagehelper.PageInterceptor">
<property name="reasonable" value="true"/>
</plugin>
</plugins>
<environments default="development">
<environment id="development">
<transactionManager type="JDBC"/>
<dataSource type="POOLED">
<property name="driver" value="com.mysql.cj.jdbc.Driver"/>
<property name="url" value="jdbc:mysql://10.49.196.23:3306/test?characterEncoding=utf-8"/>
<property name="username" value="root"/>
<property name="password" value="123456"/>
</dataSource>
</environment>
</environments>
<mappers>
<mapper resource="com/abc/mapper/StudentMapper.xml"/>
<mapper class="com.abc.mapper.TeacherMapper"/>
</mappers>
</configuration>
package com.abc.entity;
import lombok.Data;
import lombok.ToString;
import java.time.LocalDateTime;
@ToString
@Data
public class Student {
private Long id;
private LocalDateTime createTime;
private LocalDateTime modifyTime;
private String name;
private Integer age;
private String homeAddress;
}
package com.abc.entity;
import lombok.Data;
import lombok.ToString;
import java.time.LocalDateTime;
@ToString
@Data
public class Teacher {
private Long id;
private LocalDateTime createTime;
private LocalDateTime modifyTime;
private String name;
private Integer age;
private String homeAddress;
}
provider 主要用来提供 SQL。
package com.abc.provider;
import org.apache.ibatis.builder.annotation.ProviderMethodResolver;
import org.apache.ibatis.jdbc.SQL;
public class TeacherProvider implements ProviderMethodResolver {
public static String select2(String name, String homeAddress) {
return new SQL(){{
SELECT("*");
FROM("a_teacher");
if (name != null && !"".equals(name)) {
WHERE("name like #{name}");
}
if (name != null && !"".equals(homeAddress)) {
WHERE("home_address like #{name}");
}
}}.toString();
}
}
package com.abc.mapper;
import com.abc.entity.Student;
import org.apache.ibatis.annotations.Param;
import java.util.List;
import java.util.Map;
public interface StudentMapper {
void insert(Student student);
void update(Student student);
Student selectById(Long id);
List<Student> select(@Param("name") String name, @Param("homeAddress") String homeAddress);
List<Map<String, Object>> select2(String name, String homeAddress);
void delete(Long[] ids);
}
StudentMapper 使用 XML 来编写 SQL,对应 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">
<insert id="insert" parameterType="com.abc.entity.Student" useGeneratedKeys="true" keyProperty="id">
insert into a_student(create_time,modify_time,name,age,home_address)
values(#{createTime},#{modifyTime},#{name},#{age},#{homeAddress})
</insert>
<update id="update" parameterType="com.abc.entity.Student">
update a_student set id=id
<if test="name != null and name != ''">
,name=#{name}
</if>
<if test="age != null">
,age=#{age}
</if>
<if test="homeAddress != null and homeAddress != ''">
,home_address=#{homeAddress}
</if>
where id=#{id}
</update>
<select id="selectById" resultType="com.abc.entity.Student">
select * from a_student where id=#{id}
</select>
<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>
<delete id="delete">
delete from a_student where id in
<foreach collection="array" item="id" index="index" open="(" close=")" separator=",">
#{id}
</foreach>
</delete>
</mapper>
表 a_student 的字段与实体类的属性一一对应(表中字段使用下划线写法,实体类属性使用驼峰写法),字段 id 为自增字段。
package com.abc.mapper;
import com.abc.entity.Teacher;
import com.abc.provider.TeacherProvider;
import org.apache.ibatis.annotations.*;
import java.util.List;
import java.util.Map;
public interface TeacherMapper {
@Options(useGeneratedKeys = true, keyProperty = "id")
@Insert({"insert into a_teacher(create_time,modify_time,name,age,home_address)",
" values(#{createTime},#{modifyTime},#{name},#{age},#{homeAddress})"})
void insert(Teacher teacher);
@Update({"<script>",
"update a_teacher set id=id",
"<if test='name != null and name != \"\"'>",
" ,name=#{name}",
"</if>",
"<if test='age != null'>",
" ,age=#{age}",
"</if>",
"<if test='homeAddress != null and homeAddress != \"\"'>",
" ,home_address=#{homeAddress}",
"</if>",
"where id=#{id}",
"</script>"
})
void update(Teacher teacher);
@Select("select * from a_teacher where id=#{id}")
Teacher selectById(Long id);
@Select({"<script>",
"select * from a_teacher 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>",
"</script>"
})
List<Teacher> select(@Param("name") String name, @Param("homeAddress") String homeAddress);
@SelectProvider(type = TeacherProvider.class)
List<Map<String, Object>> select2(String name, String homeAddress);
@Delete({"<script>",
"delete from a_teacher where id in",
"<foreach collection='array' item='id' index='index' open='(' close=')' separator=','>",
" #{id}",
"</foreach>",
"</script>"
})
void delete(Long[] ids);
}
TeacherMapper 使用注解来编写 SQL,如果使用了动态 SQL,需添加 script 元素;如果 SQL 比较复杂,不太方便使用注解,可以通过 Provider 使用 Java 代码来构建 SQL。
表 a_teacher 的字段与实体类的属性一一对应(表中字段使用下划线写法,实体类属性使用驼峰写法),字段 id 为自增字段。
这里使用 Logback 作为日志框架,其配置文件(logback.xml)内容如下:
<?xml version="1.0" encoding="utf-8"?>
<configuration debug="false">
<appender name="STDOUT" class="ch.qos.logback.core.ConsoleAppender">
<encoder>
<pattern>%d %level [%thread] %logger[%L] -> %m%n</pattern>
</encoder>
</appender>
<root level="info">
<appender-ref ref="STDOUT" />
</root>
<logger name="com.abc.mapper" level="debug">
</logger>
</configuration>
Mybatis 中分页可以使用 PageHelper 插件,该插件方便好用,具体使用方法及配置说用可参考官网文档:https://pagehelper.github.io。
package com.abc.mapper;
import com.abc.entity.Student;
import com.github.pagehelper.PageHelper;
import com.github.pagehelper.PageInfo;
import org.apache.ibatis.io.Resources;
import org.apache.ibatis.session.SqlSession;
import org.apache.ibatis.session.SqlSessionFactory;
import org.apache.ibatis.session.SqlSessionFactoryBuilder;
import org.junit.After;
import org.junit.Before;
import org.junit.Test;
import org.slf4j.Logger;
import org.slf4j.LoggerFactory;
import java.io.IOException;
import java.io.InputStream;
import java.time.LocalDateTime;
import java.util.List;
import java.util.Map;
public class StudentMapperCase {
private Logger logger = LoggerFactory.getLogger(StudentMapperCase.class);
private SqlSession sqlSession;
@Before
public void before() throws IOException {
String resource = "mybatis-config.xml";
InputStream inputStream = Resources.getResourceAsStream(resource);
SqlSessionFactory sqlSessionFactory = new SqlSessionFactoryBuilder().build(inputStream);
sqlSession = sqlSessionFactory.openSession();
}
@After
public void after() {
sqlSession.close();
}
@Test
public void insert() {
StudentMapper mapper = sqlSession.getMapper(StudentMapper.class);
Student student = new Student();
student.setCreateTime(LocalDateTime.now());
student.setName("李白");
student.setAge(30);
student.setHomeAddress("长安");
mapper.insert(student);
sqlSession.commit();
logger.info("id={}", student.getId());
}
@Test
public void update() {
Student student = new Student();
student.setId(261L);
student.setName("李白2");
StudentMapper mapper = sqlSession.getMapper(StudentMapper.class);
mapper.update(student);
sqlSession.commit();
}
@Test
public void selectById() {
StudentMapper mapper = sqlSession.getMapper(StudentMapper.class);
Student student = mapper.selectById(261L);
logger.info(student.toString());
}
@Test
public void select() {
StudentMapper mapper = sqlSession.getMapper(StudentMapper.class);
List<Student> students = mapper.select("%李%", "%长%");
logger.info(students.toString());
}
@Test
public void selectForPage() {
StudentMapper mapper = sqlSession.getMapper(StudentMapper.class);
PageHelper.startPage(1, 5);
List<Student> students = mapper.select("%李%", "");
PageInfo<Map<String, String>> pageInfo = new PageInfo(students);
logger.info(pageInfo.toString());
}
@Test
public void select2() {
StudentMapper mapper = sqlSession.getMapper(StudentMapper.class);
List<Map<String, Object>> list = mapper.select2("%李%", "%长%");
logger.info(list.toString());
}
@Test
public void delete() {
StudentMapper mapper = sqlSession.getMapper(StudentMapper.class);
mapper.delete(new Long[]{260L, 263L});
}
}
package com.abc.mapper;
import com.abc.entity.Teacher;
import com.github.pagehelper.PageHelper;
import com.github.pagehelper.PageInfo;
import org.apache.ibatis.io.Resources;
import org.apache.ibatis.session.SqlSession;
import org.apache.ibatis.session.SqlSessionFactory;
import org.apache.ibatis.session.SqlSessionFactoryBuilder;
import org.junit.After;
import org.junit.Before;
import org.junit.Test;
import org.slf4j.Logger;
import org.slf4j.LoggerFactory;
import java.io.IOException;
import java.io.InputStream;
import java.time.LocalDateTime;
import java.util.List;
import java.util.Map;
public class TeacherMapperCase {
private Logger logger = LoggerFactory.getLogger(TeacherMapperCase.class);
private SqlSession sqlSession;
@Before
public void before() throws IOException {
String resource = "mybatis-config.xml";
InputStream inputStream = Resources.getResourceAsStream(resource);
SqlSessionFactory sqlSessionFactory = new SqlSessionFactoryBuilder().build(inputStream);
sqlSession = sqlSessionFactory.openSession();
}
@After
public void after() {
sqlSession.close();
}
@Test
public void insert() {
Teacher teacher = new Teacher();
teacher.setCreateTime(LocalDateTime.now());
teacher.setName("孔子");
teacher.setAge(30);
teacher.setHomeAddress("鲁国");
sqlSession.insert("com.abc.mapper.TeacherMapper.insert", teacher);
sqlSession.commit();
logger.info("id={}", teacher.getId());
}
@Test
public void update() {
Teacher teacher = new Teacher();
teacher.setId(1865L);
teacher.setName("孔子2");
TeacherMapper mapper = sqlSession.getMapper(TeacherMapper.class);
mapper.update(teacher);
sqlSession.commit();
}
@Test
public void selectById() {
TeacherMapper mapper = sqlSession.getMapper(TeacherMapper.class);
Teacher teacher = mapper.selectById(1865L);
logger.info(teacher.toString());
}
@Test
public void select() {
TeacherMapper mapper = sqlSession.getMapper(TeacherMapper.class);
List<Teacher> teachers = mapper.select("%孔%", "%鲁%");
logger.info(teachers.toString());
}
@Test
public void selectForPage() {
TeacherMapper mapper = sqlSession.getMapper(TeacherMapper.class);
PageHelper.startPage(10, 3);
List<Teacher> teachers = mapper.select("%孔%", "%鲁%");
PageInfo<Map<String, String>> pageInfo = new PageInfo(teachers);
logger.info(pageInfo.toString());
}
@Test
public void select2() {
TeacherMapper mapper = sqlSession.getMapper(TeacherMapper.class);
List<Map<String, Object>> list = mapper.select2("%孔%", "%鲁%");
logger.info(list.toString());
}
@Test
public void delete() {
TeacherMapper mapper = sqlSession.getMapper(TeacherMapper.class);
mapper.delete(new Long[]{1853L, 1854L});
}
}
我正在学习如何使用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