123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212 |
- server:
- port: 80
- undertow:
-
- buffer-size: 1024
-
- direct-buffers: true
-
- threads:
-
- io: 16
-
- worker: 400
- servlet:
-
- encoding:
- charset: UTF-8
- force: true
- spring:
- cache:
- ehcache:
- config: classpath:config/ehcache.xml
- servlet:
- multipart:
- max-file-size: 256MB
- max-request-size: 1024MB
- web:
- resources:
- add-mappings: false
- mvc:
- throw-exception-if-no-handler-found: true
- datasource:
- driver-class-name: com.mysql.cj.jdbc.Driver
- logging:
- config: classpath:log/logback_${blade.env}.xml
- mybatis-plus:
- mapper-locations: classpath:org/springblade/**/mapper/*Mapper.xml
-
- typeAliasesPackage: org.springblade.**.entity
-
- global-config:
-
- banner: false
- db-config:
-
- id-type: assign_id
-
- insert-strategy: not_null
- update-strategy: not_null
- where-strategy: not_null
-
- table-underline: true
-
-
- logic-delete-value: 1
-
- logic-not-delete-value: 0
- configuration:
- map-underscore-to-camel-case: true
- cache-enabled: false
- report:
- enabled: false
- database:
- provider:
- prefix: blade-
- knife4j:
-
- enable: true
-
- basic:
- enable: false
- username: blade
- password: blade
-
- setting:
- enableSwaggerModels: true
- enableDocumentManage: true
- enableHost: false
- enableHostText: http://localhost
- enableRequestCache: true
- enableFilterMultipartApis: false
- enableFilterMultipartApiMethodType: POST
- language: zh_cn
- enableFooter: false
- enableFooterCustom: true
- footerCustomContent: Copyright © 2023 SpringBlade All Rights Reserved
- swagger:
- title: SpringBlade 接口文档系统
- description: SpringBlade 接口文档系统
- version: 3.7.0
- license: Powered By SpringBlade
- licenseUrl: https://bladex.cn
- terms-of-service-url: https://bladex.cn
- contact:
- name: smallchill
- email: smallchill@163.com
- url: https://gitee.com/smallc
- oss:
- enabled: true
- name: qiniu
- tenant-mode: true
- endpoint: http://prt1thnw3.bkt.clouddn.com
- access-key: N_Loh1ngBqcJovwiAJqR91Ifj2vgOWHOf8AwBA_h
- secret-key: AuzuA1KHAbkIndCU0dB3Zfii2O3crHNODDmpxHRS
- bucket-name: blade
- social:
- oauth:
- GITHUB:
- client-id: 233************
- client-secret: 233************************************
- redirect-uri: ${social.domain}/oauth/redirect/github
- GITEE:
- client-id: 233************
- client-secret: 233************************************
- redirect-uri: ${social.domain}/oauth/redirect/gitee
- WECHAT_OPEN:
- client-id: 233************
- client-secret: 233************************************
- redirect-uri: ${social.domain}/oauth/redirect/wechat
- QQ:
- client-id: 233************
- client-secret: 233************************************
- redirect-uri: ${social.domain}/oauth/redirect/qq
- DINGTALK:
- client-id: 233************
- client-secret: 233************************************
- redirect-uri: ${social.domain}/oauth/redirect/dingtalk
- blade:
- token:
-
- sign-key: cKKlhKNnysMWEybv4vGLG2w1E9LX2BB3
-
- aes-key: c4MeupBnWASIXWaQIZh25bQkDcdtyTTl
- xss:
- enabled: true
- skip-url:
- - /blade-test/**
- secure:
- skip-url:
- - /blade-test/**
- client:
- - client-id: sword
- path-patterns:
- - /blade-sword/**
- - client-id: saber
- path-patterns:
- - /blade-saber/**
- tenant:
- column: tenant_id
- tables:
- - blade_notice
- sms:
- enabled: true
- name: aliyun
- sign-name: liquor
-
-
-
- template-id: SMS_243346641
- access-key: LTAI5tQJaGbQkJn5tqwot8gm
- secret-key: 59m2lXM2kDA1l2FRJ56VS5J1iNt9kC
-
- region-id: cn-hangzhou
- access-key-id: LTAI5tJkrXAxPJnQdaQX6ZZX
- access-key-secret: cI9X9pjjcKavsEXfbf5QFeElAoklHd
-
- message-phone: 18786650887
- xxl:
- job:
- admin:
-
- addresses: http://127.0.0.1:8080/xxl-job-admin
-
- accessToken: default_token
- executor:
-
- appname: xxl-job-executor
-
- address:
-
- ip:
-
- port: 9999
-
- logpath: logs/xxl-job/jobhandler
-
- logretentiondays: 30
|