jeepay/conf/devCommons/config/application.yml

46 lines
1.4 KiB
YAML
Raw Normal View History

#################################
# 开发环境通用配置文件放置目录
#################################
spring:
datasource:
# yml填写url连接串 无需将&符号进行转义
2021-06-28 15:48:05 +08:00
url: jdbc:mysql://127.0.0.1:3306/jeepay?zeroDateTimeBehavior=convertToNull&useUnicode=true&characterEncoding=utf-8&autoReconnect=true&useSSL=false
username: root
password:
redis:
host: 127.0.0.1
port: 6379
password:
2021-06-28 15:48:05 +08:00
# 注意以下MQ配置需注意【如需使用activeMQ则需将rabbitMQ配置注释即可】
profiles:
include:
- activeMQ
# - rabbitMQ # 需要安装延迟队列插件https://www.rabbitmq.com/blog/2015/04/16/scheduling-messages-with-rabbitmq/
#activeMQ配置
activemq:
broker-url: tcp://localhost:61616 #连接地址
2021-06-28 15:48:05 +08:00
#rabbitmq配置
# rabbitmq:
# addresses: 127.0.0.1:5672
# username: jeepay
# password: 123123
# dynamic: true
# virtual-host: /
#日志配置参数。
# 当存在logback-spring.xml文件时 该配置将引进到logback配置 springboot配置不生效。
# 不存在logback-spring.xml 文件时, 使用springboot的配置 同样可用。
logging:
level:
root: info #主日志级别
com.jeequan.jeepay: debug #该项目日志级别当需要打印sql时请开启为debug
path: ./logs #日志存放地址
#系统业务参数
isys:
oss-file:
root-path: /home/jeepay/upload #存储根路径 ( 无需以‘/’结尾 )