2024-07-22 17:48:41 +08:00
|
|
|
# 项目配置
|
|
|
|
like:
|
|
|
|
upload-directory: /www/wwwroot/housekeeping/server/public/uploads/ # 上传目录
|
|
|
|
|
|
|
|
# 框架配置
|
|
|
|
spring:
|
|
|
|
# 数据源配置
|
|
|
|
datasource:
|
2024-07-26 17:29:28 +08:00
|
|
|
url: jdbc:mysql://192.168.4.107:3306/charging_pile?useUnicode=true&characterEncoding=UTF-8&autoReconnect=true&useSSL=false
|
2024-07-22 17:48:41 +08:00
|
|
|
type: com.zaxxer.hikari.HikariDataSource # 数据源类型
|
|
|
|
driver-class-name: com.mysql.jdbc.Driver # MySql的驱动
|
|
|
|
username: root # 数据库账号
|
|
|
|
password: hcy123456
|
|
|
|
# Redis配置
|
|
|
|
redis:
|
|
|
|
host: localhost # Redis服务地址
|
|
|
|
port: 6379 # Redis端口
|
|
|
|
password: # Redis密码
|
|
|
|
database: 0 # 数据库索引
|