MyBaties+SpringBoot

MyBaties+SpringBoot,第1张

MyBaties+SpringBoot 基础配置

MyBatis所需的配置文件

  
            org.mybatis.spring.boot
            >mybatis-spring-boot-starter
            1.1.1
        
        
            mysql
            >mysql-connector-java
        
        
            org.springframework.boot
            >spring-boot-devtools
            true
        

配置SpringBoot文件书写

spring:
  datasource:
    url: jdbc:mysql://39.106.66.228:3306/testWeb?serverTimezone=Asia/Shanghai 
    username: root
    password: "@mysql123"
    driver-class-name: com.mysql.cj.jdbc.Driver
# mybatis配置
mybatis:
  mapper-locations: classpath:mapper/*.xml    # mapper映射文件位置
  type-aliases-package: com.example.demo.entity    # 实体类所在的位置
  configuration:
    log-impl: org.apache.ibatis.logging.stdout.StdOutImpl   #用于控制台打印sql语句

  #  d表示日期时间,
  #  %thread表示线程名,
  #  %‐5level:级别从左显示5个字符宽度
  #  %logger{50} 表示logger名字最长50个字符,否则按照句点分割。
  #  %msg:日志消息,
  #  %n是换行符

Mapper文件格式





并且在程序启动器前加入注释

@MapperScan("xxxxxxxx")

如果不写这个的话需要在dao类上加入注解@Mapper

欢迎分享,转载请注明来源:内存溢出

原文地址: http://outofmemory.cn/zaji/5435003.html

(0)
打赏 微信扫一扫 微信扫一扫 支付宝扫一扫 支付宝扫一扫
上一篇 2022-12-11
下一篇 2022-12-11

发表评论

登录后才能评论

评论列表(0条)

保存