| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263 |
- spring:
- application:
- name: gdt-auto
- version: v1.0.0
- profiles:
- active: test
-
- # Jackson配置
- jackson:
- date-format: yyyy-MM-dd HH:mm:ss
- time-zone: GMT+8
- default-property-inclusion: non_null
- # MyBatis Plus配置
- mybatis-plus:
- mapper-locations: classpath*:/mapper/**/*.xml
- type-aliases-package: com.moka.gdtauto.entity
- global-config:
- db-config:
- id-type: auto
- logic-delete-field: deleted
- logic-delete-value: 1
- logic-not-delete-value: 0
- banner: false
- configuration:
- map-underscore-to-camel-case: true
- cache-enabled: false
- log-impl: org.apache.ibatis.logging.slf4j.Slf4jImpl
- # Server配置
- server:
- port: 8080
- servlet:
- context-path: /
- tomcat:
- uri-encoding: UTF-8
- threads:
- max: 200
- min-spare: 10
- # Plumelog配置
- plumelog:
- env: ${spring.profiles.active}
- redis:
- host: r-uf6odtyjx4otfkczwhpd.redis.rds.aliyuncs.com
- port: 52525
- auth: NTZY_LOg666%$_redis
- # 腾讯广告API配置
- tencent:
- ads:
- user-token-redirect-uri: https://moka-auto.mokamrp.com/api/user/user-token-callback
- oauth-redirect-uri: https://moka-auto.mokamrp.com/api/gdt/auth/callback
- oauth-ok-redirect-uri: https://moka-auto.mokamrp.com/api/gdt/auth/ok
- client-id: 1112036271
- secret: CPemSOpMcp8KO1Ie
- # 阿里云OSS配置
- aliyun:
- oss:
- bucket-name: ad-auto
- cdn-domain: https://ad-autoss.luzie.cn
|