MyBatis和数据库配置相关
yml:
spring:application:name: Test # Spring项目名称,记得修改datasource:url: jdbc:mysql://127.0.0.1:3306/test?characterEncoding=utf8&useSSL=false # test为数据库名,记得修改username: root # 数据库用户名,记得修改password: '111111' # 数据库密码,记得修改driver-class-name: com.mysql.cj.jdbc.Driver # 数据库驱动类名称# 配置日志
mybatis:configuration: log-impl: org.apache.ibatis.logging.stdout.StdOutImpl # 配置打印 MyBatis⽇志(在控制台打印)map-underscore-to-camel-case: true # 设置驼峰自动转换(将数据库表名字段名映射到Java实体类的属性名)
properties:
# Test为Spring项目名,记得修改
spring.application.name=Test
# test为数据库名,记得修改
spring.datasource.url=jdbc:mysql://127.0.0.1:3306/test?characterEncoding=utf8&useSSL=false
# 用户名,记得修改
spring.datasource.username=root
# 密码,记得修改
spring.datasource.password="111111"
# 数据库驱动类名称
spring.datasource.driver-class-name=com.mysql.jdbc.Driver
# 打印日志
mybatis.configuration.log-impl=org.apache.ibatis.logging.stdout.StdOutImpl
# 设置驼峰自动转换
mybatis.configuration.map-underscore-to-camel-case=true
配置MyBatis xml文件路径
yml:
mybatis:mapper-locations: classpath:mapper/**Mapper.xml
properties:
mybatis.mapper-locations= classpath:mapper/**Mapper.xml
表示在mapper路径下的,文件名以Mapper结束的xml文件,classpath指的是resources这个目录,
如果是MyBatisplus,把原来的MyBatis改成mybatis-plus就好了,其他不变
日志相关
设置日志文件的文件名(会在项目中生成)
yml:
logging:file:name: logger/springboot.log
properties:
logging.file.name= logger/springboot.log
设置日志文件的存储路径(不能设置文件名)
yml:
logging:file:path: D:/test
properties:
logging.file.path=D:/test