关于java:搭建环境-创建springBoot所需的依赖和配置

39次阅读

共计 380 个字符,预计需要花费 1 分钟才能阅读完成。

创立 springBoot 文件的 application.yml 的配置在编写 application 时肯定要留神缩进~~~~

#server 设置
server:
  port: 8080
  #spring 资源整合
spring:
  datasource:
    url: jdbc:mysql:///dbsys?serverTimezone=GMT%2B8&characterEncoding=utf8
    username: root
    password: root
  thymeleaf:
    cache: false
    prefix: classpath:/templates/pages/
    suffix: .html
#mybatis
mybatis:
  mapper-locations:
  - classpath:/mapper/*/*.xml
 #lOG
logging:
  level:
    com.cy: debug

springBoot 所须要的依赖

正文完
 0