SpringBoot整合Mybatis

依赖


    org.mybatis.spring.boot
    mybatis-spring-boot-starter
    1.3.2

纯注解版

如何告诉Spring容器,哪个接口是Mapper呢?

一般我们的都是单独创建一个mapper的packet, 闲麻烦可以选择使用@Mapper注解标记在单个mapper接口上,或者使用@MapperScan完成mapper的批量扫描

完成简单注解版的CURD

方法的名字见名知意就行,但是方法的返回值得是注解上sql对应的返回值

  • 查询@Select
@Select("select * from person where id=#{id}")
public Person getPersonById(Integer id);
  • 删除@Delete
@Delete("delete from person where id = #{id}")
public int deletePersonById(Integer id);
  • 添加@Insert
// 添加Options注解,指定主键自增长, keyProperty 指定主键是谁,效果是运行完insert语句后,id会封装进被插入的对象中
// 方便我们后续接着使用
@Options(useGeneratedKeys = true,keyProperty = "id")
@Insert("insert into person (name,password) values(#{name},#{name})")
public int insertPerson(Person person);
  • 更新@Update
@Update("update person set name=#{name} , password=#{password} where id=#{id}")
public int updatePerson(Person person);

配置文件版

点击进入MyBatis3官网

如下图所示,在Resources目录下面创建指定的配置文件

SpringBoot整合Mybatis_第1张图片

配置文件的内容在上面的官网上可以找到,我的如下

mybatis-config.xml

点击查看更多的配置





    
    


MyBankMapper.xml




     
    
        insert into mybank (username, password, money) values (#{username},#{password},#{money})
    

通过在application.yml中添加配置告诉SpringBoot去哪里读取配置文件

mybatis:
  config-location: classpath:mybatis/mybatis-config.xml
  mapper-locations: classpath:mybatis/mapper/*.xml
#    log-impl: org.apache.ibatis.logging.stdout.StdOutImpl

你可能感兴趣的:(SpringBoot整合Mybatis)