基本用法
#注意空格都不能省
#配置端口号
server:
port: 8080
address: 127.0.0.1
#配置数据库
spring:
datasource:
driver-class-name: com.mysql.cj.jdbc.Driver
url: jdbc:mysql://localhost:3306/tlias
username: root
password: root
#定义对象/Map集合
user:
name: zhangsan
age: 18
address: beijing
#定义数组/List/Set集合
hobby:
- java
- game
- sport
基础配置,替换application.properties
- yml配置
声明:阿里云OSS信息为假
spring:
datasource: #配置数据库连接信息
driver-class-name: com.mysql.cj.jdbc.Driver
url: jdbc:mysql://localhost:3306/tlias
username: root
password: root
servlet:
multipart:
max-file-size: 10MB #设置单个文件大小
max-request-size: 100MB #单个请求最大大小限制(一次请求可以上传多个文件)
web:
resources:
static-locations: file:D:/images/, # 不使用阿里云OSS,将文件保存到本地时,配置访问本地静态资源可访问file:D:/images/
#mybatis配置
mybatis:
configuration:
log-impl: org.apache.ibatis.logging.stdout.StdOutImpl #日志输出到控制台
map-underscore-to-camel-case: true #下划线转驼峰命名
#阿里云OSS配置
aliyun:
oss:
endpoint: https://oss-cn-beijing.aliyuncs.com
accessKeyId: LTAI5TFGlvX6DKqJWxd6nEuw
accessKeySecret: yBshYweasdsDuhCArrVHwIiBKpyqSI
bucketName: web-tlias
- application.properties配置对比
点击查看代码
#驱动类名称
spring.datasource.driver-class-name=com.mysql.cj.jdbc.Driver
#数据库连接的url
spring.datasource.url=jdbc:mysql://localhost:3306/tlias
#连接数据库的用户名
spring.datasource.username=root
#连接数据库的密码
spring.datasource.password=root
#配置mybatis的日志, 指定输出到控制台
mybatis.configuration.log-impl=org.apache.ibatis.logging.stdout.StdOutImpl
#开启mybatis的驼峰命名自动映射开关 a_column ------> aCloumn
mybatis.configuration.map-underscore-to-camel-case=true
# 配置单个文件上传大小
spring.servlet.multipart.max-file-size=10MB
# 配置单个请求最大大小限制(一次请求可以上传多个文件)
spring.servlet.multipart.max-request-size=100MB
# 配置阿里云OSS
aliyun.oss.endpoint=https://oss-cn-beijing.aliyuncs.com
aliyun.oss.accessKeyId=LTAI5TFGlvX6DKqJWxd6nEuw
aliyun.oss.accessKeySecret=yBshYweasdsDuhCArrVHwIiBKpyqSI
aliyun.oss.bucketName=web-tlias
# 不使用阿里云OSS,将文件保存到本地时,配置访问本地静态资源可访问file:D:/images/
spring.web.resources.static-locations=file:D:/images/