34 lines
811 B
YAML
34 lines
811 B
YAML
server:
|
|
port: 8080
|
|
#mybatis连接四要素
|
|
spring:
|
|
datasource:
|
|
driver-class-name: com.mysql.cj.jdbc.Driver
|
|
url: jdbc:mysql://localhost:3306/tlias1
|
|
username: root
|
|
password: 1234
|
|
servlet:
|
|
multipart:
|
|
#单个文件上传大小限制10兆
|
|
max-file-size: 10MB
|
|
#一次请求多个文件上传大小限制100兆
|
|
max-request-size: 100MB
|
|
|
|
mybatis:
|
|
configuration:
|
|
#输出mybatis的日志
|
|
log-impl: org.apache.ibatis.logging.stdout.StdOutImpl
|
|
#驼峰自动映射
|
|
map-underscore-to-camel-case: true
|
|
|
|
#阿里云OSS配置信息
|
|
aliyun:
|
|
oss:
|
|
endpoint: https://oss-cn-hangzhou.aliyuncs.com
|
|
bucketName: inmind-test1
|
|
region: cn-hangzhou
|
|
|
|
#spring事务管理日志
|
|
logging:
|
|
level:
|
|
org.springframework.jdbc.support.JdbcTransactionManager: debug |