MP教程-配置

Posted deepminer

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了MP教程-配置相关的知识,希望对你有一定的参考价值。

配置

一、Mybatis原生配置

  • application.properties


mybatis-plus.config-location=classpath:mybatis.xml

 

  • mybatis.xml


<?xml version="1.0" encoding="UTF-8" ?>
<!DOCTYPE configuration
  PUBLIC "-//mybatis.org//DTD Config 3.0//EN"
  "http://mybatis.org/dtd/mybatis-3-config.dtd">
<configuration>
</configuration>

 

 

二、使用Mybatis的原生Mapper配置

  • application.properties

    
    
    mybatis-plus.mapper-locations=classpath*:mybatis/*.xml

     

    ?

  • UserMapper.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.will.learn.springboot.mapper.UserMapper">
      <select id="selById" resultType="com.will.learn.springboot.pojo.User">
        select * from tb_user where id = #{id}
      </select>
    </mapper>

     

三、进阶配置

  • MyBatis别名包扫名路径配置


mybatis-plus.type-aliases-package = com.will.learn.springboot.pojo

 

  • DB策略配置(IdType)


mybatis-plus.global-config.db-config.id-type=auto

 

  • DB策略配置(tablePrefix)


mybatis-plus.global-config.db-config.table-prefix=tb_

 

以上是关于MP教程-配置的主要内容,如果未能解决你的问题,请参考以下文章

iOS,AVPlayer - 循环播放 MP3 片段

对话框片段中的 MP 图表

如何获取 .mp4 视频文件的 Dash 片段

audacity怎么用

2018年最新阿里云云主机安装centos从入门到使用视频教程

VIM 代码片段插件 ultisnips 使用教程