springboot2.x集成MybatisPlus + MySQL

参考:https://blog.csdn.net/fxbin123/article/details/86907711

我的pom.xml文件:

不需要再集成:mybatis-spring-boot-starter了。集成mybatis-plus-boot-starter


   
   
      org.springframework.boot
      spring-boot-starter
   
   
   
      org.springframework.boot
      spring-boot-starter-test
      test
   
   
   
      org.springframework.boot
      spring-boot-starter-web
   
   
   
      mysql
      mysql-connector-java
      runtime
   
   
   
      
      
      
   
   
   
      com.baomidou
      mybatis-plus-boot-starter
      3.1.1
   

   
   
      org.projectlombok
      lombok
      1.18.0
   
   
   
      com.alibaba
      fastjson
      1.2.15
   

注意事项:

application.yml文件的关于mybatis-plus配置要写正确:

server:
  port: 9002
  servlet:
    context-path: /meeting

spring:
  #数据源
  datasource:
    url: jdbc:mysql://localhost:3306/meeting?useUnicode=true&characterEncoding=utf8&useSSL=true
    username: root
    password: 123456
    driver-class-name: com.mysql.jdbc.Driver

#mybaits-plus相关配置
mybatis-plus:
  # MyBaits 别名包扫描路径,通过该属性可以给包中的类注册别名
  type-aliases-package: com.shengquan.meeting.entity
  mapper-locations: classpath:mapper/*.xml
  configuration:
   # 这个配置会将执行的sql打印出来,在开发或测试的时候可以用
   log-impl: org.apache.ibatis.logging.stdout.StdOutImpl
    # 驼峰下划线转换
   map-underscore-to-camel-case: true
    # 配置的缓存的全局开关
   cache-enabled: true
   # 延时加载的开关
   lazy-loading-enabled: true
    # 开启的话,延时加载一个属性时会加载该对象全部属性,否则按需加载属性
   multiple-result-sets-enabled: true
   use-generated-keys: true
   default-statement-timeout: 60
   default-fetch-size: 100





你可能感兴趣的:(spring,boot,mybatis)