1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677 |
- spring:
- profiles:
- active: dev
- application:
- name: crawler-etl
- jackson:
- default-property-inclusion: NON_NULL
- datasource:
- driver-class-name: com.mysql.jdbc.Driver
- type: com.zaxxer.hikari.HikariDataSource
- hikari:
- minimum-idle: 10
- maximum-pool-size: 60
- connection-test-query: SELECT 1
- server:
- tomcat:
- threads:
- max: 1000
- uri-encoding: UTF-8
- accept-count: 1000
- connection-timeout: 30000
- servlet:
- context-path: /crawler-etl
- session:
- timeout: 60
- pagehelper:
- helper-dialect: mysql
- mybatis:
- type-aliases-package: com.tzld.crawler.etl.model.po
- mapper-locations: classpath:mapper/**/*.xml
- configuration:
- log-impl: org.apache.ibatis.logging.slf4j.Slf4jImpl
- logging:
- file:
- path: /datalog/weblog/${spring.application.name}/
- app:
- id: ${spring.application.name}
- apollo:
- bootstrap:
- enabled: true
- namespaces: application
- cacheDir: /datalog/apollo-cache-dir
- feign:
- client:
- config:
- default:
- connectTimeout: 2000
- readTimeout: 60000
- aliyun:
- oss:
- endpoint: oss-cn-hangzhou.aliyuncs.com
- accessKeyId: LTAIP6x1l3DXfSxm
- accessKeySecret: KbTaM9ars4OX3PMS6Xm7rtxGr1FLon
- log:
- endpoint: cn-hangzhou.log.aliyuncs.com
- accessKeyId: LTAIP6x1l3DXfSxm
- accessKeySecret: KbTaM9ars4OX3PMS6Xm7rtxGr1FLon
- logstore:
- info: info-log
- error: error-log
- rocketmq:
- httpEndpoint: http://1894469520484605.mqrest.cn-qingdao-public.aliyuncs.com
- instanceId: MQ_INST_1894469520484605_BXhXuzkZ
- accessKey: LTAI4G7puhXtLyHzHQpD6H7A
- secretKey: nEbq3xWNQd1qLpdy2u71qFweHkZjSG
|