2024-10-14 20:14:37 +08:00
|
|
|
server:
|
|
|
|
port: 7070
|
2024-09-27 12:21:17 +08:00
|
|
|
|
2024-10-14 20:14:37 +08:00
|
|
|
logging:
|
|
|
|
level:
|
|
|
|
cn.bunny.service.mapper: info
|
|
|
|
cn.bunny.service.controller: info
|
|
|
|
cn.bunny.service.service: info
|
|
|
|
root: info
|
|
|
|
pattern:
|
|
|
|
dateformat: HH:mm:ss:SSS
|
|
|
|
file:
|
2024-10-15 15:23:59 +08:00
|
|
|
path: "/logs/${spring.application.name}"
|
2024-10-14 20:14:37 +08:00
|
|
|
|
|
|
|
mybatis-plus:
|
|
|
|
mapper-locations: classpath:mapper/*.xml
|
|
|
|
global-config:
|
|
|
|
db-config:
|
|
|
|
logic-delete-field: isDeleted
|
|
|
|
configuration:
|
|
|
|
log-impl: org.apache.ibatis.logging.stdout.StdOutImpl # 查看日志
|
2024-10-14 14:13:50 +08:00
|
|
|
|
|
|
|
# rabbitmq:
|
|
|
|
# host: ${bunny.rabbitmq.host}
|
|
|
|
# port: ${bunny.rabbitmq.port}
|
|
|
|
# username: ${bunny.rabbitmq.username}
|
|
|
|
# password: ${bunny.rabbitmq.password}
|
|
|
|
# virtual-host: ${bunny.rabbitmq.virtual-host}
|
|
|
|
# publisher-confirm-type: correlated # 交换机确认
|
|
|
|
# publisher-returns: true # 队列确认
|
|
|
|
# listener:
|
|
|
|
# simple:
|
|
|
|
# acknowledge-mode: manual # 手动处理消息
|
|
|
|
# connection-timeout: 1s # 设置MQ连接超时时间
|
|
|
|
# template:
|
|
|
|
# retry:
|
|
|
|
# enabled: true # 失败重试
|
|
|
|
# initial-interval: 1000ms # 失败后初始时间
|
|
|
|
# multiplier: 1 # 失败后下次等待时长倍数 initial-interval * multiplier
|
2024-10-14 20:14:37 +08:00
|
|
|
# max-attempts: 3 # 最大重试次数
|
|
|
|
|
|
|
|
bunny:
|
|
|
|
datasource1:
|
|
|
|
host: 192.168.3.98
|
|
|
|
port: 3304
|
|
|
|
sqlData: auth_admin
|
|
|
|
username: root
|
|
|
|
password: "02120212"
|
|
|
|
|
|
|
|
redis:
|
|
|
|
host: 192.168.3.98
|
|
|
|
port: 6379
|
|
|
|
database: 0
|
|
|
|
password: "123456"
|
|
|
|
|
|
|
|
minio:
|
|
|
|
endpointUrl: "http://192.168.3.98:9000"
|
|
|
|
accessKey: bunny
|
|
|
|
secretKey: "02120212"
|
|
|
|
bucket-name: auth-admin
|