关于SpringBoot项目中mybatis的xml配置

SpringBoot项目中Mysql数据库的配置:
spring:
      datasource:
            driver-class-name: com.mysql.jdbc.Driver
            username:
            password:
            url: jdbc:mysql://localhost:3306/test?characterEncoding=utf-8&useSSL=false

以下为mybatis的xml的配置文件:






    
    
    



    id, name, address



springboot项目在配置Mybatis xml文件时,需要在yml文件中,添加:
mybatis:
      mapper-locations: classpath:mapper/*.xml

如果想在项目的控制台中看到sql语句信息,需要在yml文件中,添加:
logging:
      level:
            com.songyl.mapper: trace

你可能感兴趣的:(关于SpringBoot项目中mybatis的xml配置)