123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159 |
- spring:
- data:
- redis:
- host: 127.0.0.1
- port: 6379
- password: hbcoin123
- database: 6
- lettuce:
- pool:
-
- max-active: 200
-
- max-wait: -1ms
-
- max-idle: 10
-
- min-idle: 2
- datasource:
- driver-class-name: com.mysql.cj.jdbc.Driver
- url: jdbc:mysql://127.0.0.1:3306/tg-game?useUnicode=true&characterEncoding=utf-8&useSSL=false
- username: tg-game
- password: tg-game123456
- hikari:
-
-
- maximum-pool-size: 20
- minimum-idle: 5
- connection-test-query: SELECT 1
-
- connection-timeout: 30000
-
- idle-timeout: 600000
-
- keepaliveTime: 30000
-
- max-lifetime: 1800000
-
- initialization-fail-timeout: 60000
- rabbitmq:
- virtual-host: /
- host: 127.0.0.1
- port: 5672
- username: admin
- password: admin123
- listener:
- simple:
- acknowledge-mode: manual
- concurrency: 5
- max-concurrency: 10
- prefetch: 1
- retry:
- enabled: true
- initial-interval: 1000
- max-attempts: 3
- multiplier: 2
-
- template:
- retry:
- enabled: true
- initial-interval: 1000
- max-attempts: 3
- multiplier: 2
- aop:
- auto: true
- proxy-target-class: true
- mybatis-plus:
-
- mapper-locations: classpath*:/mapper/**/*.xml
-
- type-aliases-package: com.xs.core.model
-
- configuration:
-
-
- auto-mapping-behavior: PARTIAL
-
-
- map-underscore-to-camel-case: true
-
- global-config:
- banner: true
- db-config:
-
-
- id-type: ASSIGN_ID
-
- logic-delete-field: deleteFlag
-
- logic-delete-value: 1
-
- logic-not-delete-value: 0
- ---
- cosid:
- namespace: ${spring.application.name}
- machine:
- enabled: true
-
- distributor:
- type: REDIS
- guarder:
-
- enabled: true
- snowflake:
- enabled: true
- zone-id: Etc/UTC
- epoch: 1577203200000
- share:
-
- clock-sync: true
- friendly: true
- provider:
- safe-js:
- machine-bit: 7
- sequence-bit: 9
- sa-token:
-
- token-name: Authorization
-
- token-prefix: Bearer
-
- timeout: 86400
-
- active-timeout: -1
-
- is-concurrent: false
-
- is-share: true
-
- token-style: tik
-
- is-log: false
- jwt-secret-key: asdaefghifhueuiwyurfewbfjsdafjk
- encryption:
- isEncryption: true
- requestPrivateKey: 14FDF4948E60F856524FBB1175E83716558B8CBF71A68318875F506B9C6D2A4A
- requestPublicKey: 04F36CD10986CE214D0E5C540C30E0552DC8499B64E5B2709245D03BF2CADAA0CCA3C2BC2C8DB511012A50FAA1E43FCD4B8ABC521418EAB2D96F0075AD940EB25F
- responsePrivateKey: 00C83135E19EBD958593091F42A3442DE3D03D975A5DBD4CE19F85C9FBF2D364B7
- responsePublicKey: 040D10F8CA3AAC83345DA54472CCE5AB495BBB15E21E960B2A2EEE1D9EEC2E9EB1BE3902606904BD767FF056F59CC1AD237D3074A3F8D452AE376FFE84113640C0
- xssFilter:
-
- isOpenXssFilter: false
-
- xssFilterWhileUrl: /process/*
- interfaceLog:
-
- openInterfaceLog: true
|