SPRINGBOOT

springboot依赖
#servlet
server.port=8080
server.tomcat.max-connections=1000
server.servlet.context-path=/

#配置数据源
#配置druid数据源,添加依赖,此行可以省略
spring.datasource.type=com.alibaba.druid.pool.DruidDataSource
spring.datasource.url=jdbc:mysql:///jtsys?useUnicode=true&characterEncoding=utf-8&serverTimezone=GMT
spring.datasource.username=root
spring.datasource.password=root
#可以省略
spring.datasource.driver-class-name=com.mysql.cj.jdbc.Driver

#mybati相关配置
#配置sql执行超时时间
mybatis.configuration.default-statement-timeout=30 
#开启驼峰命名规则
mybatis.configuration.map-underscore-to-camel-case= true

#配置日志,让控制台打印sql语句
logging.level.com.cy=debug

#开启静态页面拼接 视图解析器
spring.thymeleaf.prefix=classpath:/templates/page/
spring.thymeleaf.suffix=.html

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