SpringBoot配置yml文件

在resources文件下创建yml配置文件

# 在application.yml中配置数据库相关信息
# 配置服务端口号
server:
  port: 8080
# spring配置
spring:
  datasource:
    driver-class-name: com.mysql.cj.jdbc.Driver
    url: jdbc:mysql://localhost:3306/logistics?useUnicode=true&characterEncoding=utf8&useSSL=true&serverTimezone=UTC
    username: root
    password: root
    type: com.alibaba.druid.pool.DruidDataSource
  servlet: #关于上传设置
    multipart:
      enabled: true #是否开启文件上传支持
      file-size-threshold: 0 #文件写入磁盘阈值
      max-file-size: 10MB #单个文件时上传的最大大小
      location: E:\\temp #文件上传临时保存位置
      max-request-size: 100MB #多个文件时上传的最大大小
      resolve-lazily: false #文件是否延迟解析

# mybatis 配置类的别名 xml映射地址
# 注意Dao层接口上需要标注@Mapper
mybatis:
  type-aliases-package: com.buba.*.pojo
  mapper-locations: classpath:mybatis/mapper/*.xml

    原文作者:山有木兮^木有枝
    原文地址: https://blog.csdn.net/ParTing198/article/details/118708733
    本文转自网络文章,转载此文章仅为分享知识,如有侵权,请联系博主进行删除。
点赞