spring boot的日常配置

Posted Ranch

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了spring boot的日常配置相关的知识,希望对你有一定的参考价值。

#数据库连接配置msql
spring.datasource.url:jdbc:mysql://127.0.0.1:3306/test
spring.datasource.username: root
spring.datasource.password: 123456
spring.datasource.driver-class-name: com.mysql.jdbc.Driver


#控制台打印sql语句
mybatis.configuration.log-impl=org.apache.ibatis.logging.stdout.StdOutImpl 

 

以上是关于spring boot的日常配置的主要内容,如果未能解决你的问题,请参考以下文章

spring boot 读取配置文件的方式

Spring boot:thymeleaf 没有正确渲染片段

解决spring-boot启动中碰到的问题:Cannot determine embedded database driver class for database type NONE(转)(代码片段

Spring Boot部署JAR文件瘦身优化经验分享

spring boot +mybatis(通过properties配置) 集成

一张图,理顺 Spring Boot应用在启动阶段执行代码的几种方式