SpringBoot中的一些基本配置

SpringBoot中的一些基本配置

# 数据库配置
# mysql配置信息
spring.datasource.url=jdbc:mysql://localhost:3306/wiki?autoReconnect=true&useUnicode=true&characterEncoding=utf8&zeroDateTimeBehavior=CONVERT_TO_NULL&useSSL=false&serverTimezone=CTT&allowMultiQueries=true
spring.datasource.username=root
spring.datasource.password=436280
spring.datasource.driver-class-name=com.mysql.cj.jdbc.Driver

# 配置扫描mybatis所有Mapper.xml文件的路径
mybatis.mapper-locations=classpath:/mapper/**/*.xml

# 打印所有的SQL日志(就是把这个路径下的日志修改为最低级别),SQL 参数 结果
logging.level.com.zhondu.wiki.mapper=trace

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