123456789101112131415161718192021222324252627282930 |
- server.port=8081
- server.servlet.context-path=/meter/reading/job
- logging.level.root=info
- logging.file.path=./logs
- #########################################XXL Job配置#################################################
- xxl.job.admin.addresses=http://10.0.0.71:8081/xxl-job-admin
- xxl.job.accessToken=
- xxl.job.executor.appname=meter-reading-executor
- xxl.job.executor.address=
- xxl.job.executor.ip=
- xxl.job.executor.port=18081
- xxl.job.executor.logpath=/home/app/prd/meter-reading-job/xxl-job/jobhandler
- xxl.job.executor.logretentiondays=30
- #########################################Rabbit MQ 配置#############################################
- spring.rabbitmq.host=47.112.217.10
- spring.rabbitmq.port=5672
- spring.rabbitmq.username=zoniot
- spring.rabbitmq.password=zcxk100
- spring.rabbitmq.virtual-host=/
- spring.rabbitmq.connection-timeout=1000ms
- # 开启发送确认
- spring.rabbitmq.publisher-confirm-type=correlated
- # 开启发送失败退回
- spring.rabbitmq.publisher-returns=true
- spring.rabbitmq.template.mandatory=true
- # 开启ACK
- spring.rabbitmq.listener.direct.acknowledge-mode=manual
- spring.rabbitmq.listener.simple.acknowledge-mode=manual
- # 任务队列
- job.task.rabbit.exchange=job-task-exchange
|