wlcb-common-population/src/main/resources/application-ws.yml

176 lines
6.3 KiB
YAML
Raw Normal View History

2021-11-30 15:20:49 +08:00
server:
port: 8080
url: http://192.168.0.109:8080/population
system-title: 人口信息平台
system-sub-title: 人口信息平台
2022-01-05 09:48:34 +08:00
default-home-page: default.html
2021-11-30 15:20:49 +08:00
servlet:
context-path: /population
nav-page: http://192.168.0.155:7011/usercenter
spring:
login-url: /oauth/login
login-failure: /oauth/login?error
login-process: /userlogin
2022-02-27 11:05:24 +08:00
assets-matchers: /assets/**,/inspur/**
2021-11-30 15:20:49 +08:00
thymeleaf:
prefix: classpath:/templates/
suffix: .html
mode: HTML5
encoding: UTF-8
cache: false
main:
allow-bean-definition-overriding: true
servlet:
multipart:
max-file-size: 1GB
max-request-size: 1GB
datasource:
druid:
url: jdbc:mysql://127.0.0.1:3306/db_cloud_population_v2?useUnicode=true&characterEncoding=utf8&characterSetResults=utf8&autoReconnect=true&failOverReadOnly=false&useSSL=false&serverTimezone=UTC
db-type: mysql
driver-class-name: com.mysql.cj.jdbc.Driver
username: root
password: 123456
initial-size: 2
min-idle: 2
max-active: 5
max-wait: 60000
time-between-eviction-runs-millis: 60000
min-evictable-idle-time-millis: 300000
validation-query: SELECT 1 FROM DUAL
test-while-idle: true
test-on-borrow: false
test-on-return: false
pool-prepared-statements: true
max-pool-prepared-statement-per-connection-size: 10
filter:
commons-log:
connection-logger-name: stat,wall,log4j
stat:
log-slow-sql: true
slow-sql-millis: 2000
connection-properties: druid.stat.mergeSql=true;druid.stat.slowSqlMillis=5000
use-global-data-source-stat: true
data:
mongodb:
uri: mongodb://smartcity:smartcity@192.168.0.156:27017/smartcity
redis:
database: 6
host: 192.168.0.156
port: 6379
password: 666
timeout: 3000ms
jedis:
pool:
max-active: 8
max-wait: 1ms
max-idle: 8
min-idle: 0
2021-12-28 15:39:32 +08:00
kafka:
bootstrap-servers: 192.168.0.156:9093
producer:
# 写入失败时重试次数。当leader节点失效一个repli节点会替代成为leader节点此时可能出现写入失败
# 当retris为0时produce不会重复。retirs重发此时repli节点完全成为leader节点不会产生消息丢失。
retries: 0
#procedure要求leader在考虑完成请求之前收到的确认数用于控制发送记录在服务端的持久化其值可以为如下
#acks = 0 如果设置为零,则生产者将不会等待来自服务器的任何确认,该记录将立即添加到套接字缓冲区并视为已发送。在这种情况下,无法保证服务器已收到记录,并且重试配置将不会生效(因为客户端通常不会知道任何故障),为每条记录返回的偏移量始终设置为-1。
#acks = 1 这意味着leader会将记录写入其本地日志但无需等待所有副本服务器的完全确认即可做出回应在这种情况下如果leader在确认记录后立即失败但在将数据复制到所有的副本服务器之前则记录将会丢失。
#acks = all 这意味着leader将等待完整的同步副本集以确认记录这保证了只要至少一个同步副本服务器仍然存活记录就不会丢失这是最强有力的保证这相当于acks = -1的设置。
#可以设置的值为all, -1, 0, 1
acks: 1
consumer:
group-id: SmartCity
# smallest和largest才有效如果smallest重新0开始读取如果是largest从logfile的offset读取。一般情况下我们都是设置smallest
auto-offset-reset: earliest
# 设置自动提交offset
enable-auto-commit: true
# 如果'enable.auto.commit'为true则消费者偏移自动提交给Kafka的频率以毫秒为单位默认值为5000。
auto-commit-interval: 100
max-poll-records: 5
2021-11-30 15:20:49 +08:00
# 安全
security:
oauth2:
2022-02-28 12:12:01 +08:00
oauth-server: http://192.168.0.155:7011/usercenter
2021-11-30 15:20:49 +08:00
oauth-logout: ${security.oauth2.oauth-server}/logout?redirect_uri=${server.url}
client:
2022-02-27 11:05:24 +08:00
#client-id: c00491da506842ddb516d4b1e5ccd13e
2022-02-28 12:12:01 +08:00
client-id: 5bc261e8e21c40a4aade918ba12299c1
2022-02-27 11:05:24 +08:00
#client-secret: bll3ZVZuUGZsSXBqckJjRVNEMkc3bklic0pOZDYyWkk0SFd2eDY3N3dhUGxIdG9KZmEyTjJIRnI0dG1McEdEVA==
2022-02-28 12:12:01 +08:00
client-secret: a0oweWNraWNQRkprcDY4NURKKzFtSktOV08vUS9sclBxY0JmRStNNkNKN2xIdG9KZmEyTjJIRnI0dG1McEdEVA==
2021-11-30 15:20:49 +08:00
user-authorization-uri: ${security.oauth2.oauth-server}/oauth2_client/authorize
access-token-uri: ${security.oauth2.oauth-server}/oauth2_client/token
grant-type: authorization_code
resource:
jwt:
key-uri: ${security.oauth2.oauth-server}/oauth2_client/token_key
token-info-uri: ${security.oauth2.oauth-server}/oauth2_client/check_token
user-info-uri: ${security.oauth2.oauth-server}/user
authorization:
check-token-access: ${security.oauth2.oauth-server}/oauth2_client/token_key
api-path:
2022-02-28 12:12:01 +08:00
user-center: http://192.168.0.155:7011/usercenter
2021-11-30 15:20:49 +08:00
# 数据库
mybatis:
config-location: classpath:mybatis/mybatis-config.xml
mapper-locations: classpath*:mybatis/mapper/**/*.xml
access-control:
role-permission: false
pass-paths:
# 文档
swagger:
base-package-list: ink.wgink,cn.com.tenlion
# 文件
file:
# 文件的保存路径
upload-path: D:/ideaWorkspace/uploadfiles/population
# 图片类型
image-types: png,jpg,jpeg,gif,blob
# 视频类型
video-types: mp4,rmvb
# 音频类型
audio-types: mp3,wmv,amr
# 文件类型
file-types: doc,docx,xls,xlsx,ppt,pptx,txt,zip,rar,apk,pdf
# 同时上传最大支持数
max-file-count: 6
# 图片输出压缩质量大于0默认0.4
image-output-quality: 0.4
# 媒体最大时长(单位:秒)
media-max-duration:
# 后台
backend:
video: 10
audio: 60
# 微信
wechat:
video: 10
audio: 60
# app
app:
video: 10
audio: 60
2021-12-28 15:39:32 +08:00
# 启用minIo
use-min-io: true
# 与use-min-io配套使用
min-io:
endpoint: http://192.168.0.156:19001
access-key: minioadmin
secret-key: minioadmin
2021-11-30 15:20:49 +08:00
# 日志
logging:
file:
name: D:/ideaWorkspace/uploadfiles/population.log
level:
root: error
ink.wgink: debug
2022-02-27 11:05:24 +08:00
cn.com.tenlion: debug
inspur-auth:
appId: 9cadc6c3-53df-407f-b83f-fe42f36a3488
2022-02-28 12:12:01 +08:00
redirectUri: http://dlho.cn:9003/population/inspur/index