yml配置文件快速上手
springboot中,有三种文件可以作为配置文件
- xml文件(不推荐,臃肿)
- application.propertis文件(层次不够分明)
- yml文件(推荐,层次分明,语法简洁)
yml文件的基本语法
yml文件的注意事项
- 大小写敏感
- 数值前面必须有空格作为分隔符
- 使用缩进表示层级关系,缩进时不能使用tab间,只能使用空格
- 缩进的空格数目不重要,只要相同层级的元素左侧对齐即可
- 使用
#
表示注释,从这个字符一直到行尾
使用示例
server:
port: 8080
spring:
datasource:
driver-class-name: com.mysql.cj.jdbc.Driver
url: jdbc:mysql://localhost:3306/test
username: root
password: 1234
servlet:
multipart:
max-file-size: 10MB
max-request-size: 100MB
mybatis:
configuration:
map-underscore-to-camel-case: true
log-impl: org.apache.ibatis.logging.stdout.StdOutImpl
aliyun:
oss:
endpoint: https://oss-cn-shanghai.aliyuncs.com
bucketName: terminal