spring-boot+mybatis整合简写

Posted 笔记本在写我

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了spring-boot+mybatis整合简写相关的知识,希望对你有一定的参考价值。

spring与mybatis整合,代码将变得非常优雅!

主要使用的jar包是mybatis-spring-boot-starter.jar,其maven依赖如下,加入到pom.xml文件中

<dependency>
<groupId>org.mybatis.spring.boot</groupId>
<artifactId>mybatis-spring-boot-starter</artifactId>
<version>1.1.1</version>
</dependency>

创建实体类对象:student

创建mapper接口,打上@Mapper注解

@Mapper
public interface StudentMapper {
@Insert("insert into student(s_id,s_name) values(#{id},#{name})")
void createStudent(Student student);

@Select("select * from student")
@Results({ @Result(property = "id", column = "s_id"), @Result(property = "name", column = "s_name") })
List<Student> getAllStudents();
}

使用增删改查注解添加sql语句,映射到抽象方法中,如果方法中使用了list,则使用results和result注解映射list

 











以上是关于spring-boot+mybatis整合简写的主要内容,如果未能解决你的问题,请参考以下文章

spring boot整合mybitas怎么配置oracle?

练习小记2:SpringBoot整合MyBatis

SpringBoot 整合 MyBatis-Plus 入门体验

spring boot 1.5.4 整合 mybatis

spring-boot数据访问

mybatis 详解------ mybatis和spring整合