123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143 |
- server:
- port: 8005
- connection-timeout: 60000
- tomcat:
- min-spare-threads: 50
- max-threads: 500
- accesslog:
- enabled: true
- buffered: true
- directory: /var/logs
- file-date-format: -yyyy-MM-dd
- pattern: common
- prefix: tomcat-websocket
- rename-on-rotate: false
- request-attributes-enabled: false
- rotate: true
- suffix: .log
- eureka:
- client:
- serviceUrl:
- defaultZone: http://admin:admin123@localhost:8761/eureka/eureka/
- instance:
- lease-renewal-interval-in-seconds: 5
- prefer-ip-address: true
- spring:
- servlet:
- multipart:
- max-file-size: 150MB
- max-request-size: 150MB
- application:
- name: websocket-server
- data:
- mongodb:
- uri: mongodb://root:dayayuemeng2019@47.114.1.200:27017/mec_dev
- datasource:
- name: test
- url: jdbc:mysql://rm-bp13774a2o87ti8c7mo.mysql.rds.aliyuncs.com:3306/mec_pro?useUnicode=true&characterEncoding=UTF8&serverTimezone=Asia/Shanghai&allowMultiQueries=true
- username: mec_pro
- password: mec@Pro9
- # 使用druid数据源
- type: com.alibaba.druid.pool.DruidDataSource
- druid:
- connection-init-sqls: SET NAMES utf8mb4 COLLATE utf8mb4_unicode_ci
- driver-class-name: com.mysql.cj.jdbc.Driver
- filters: stat
- maxActive: 50
- initialSize: 10
- maxWait: 60000
- minIdle: 1
- timeBetweenEvictionRunsMillis: 60000
- minEvictableIdleTimeMillis: 300000
- validationQuery: select 'x'
- testWhileIdle: true
- testOnBorrow: false
- testOnReturn: false
- poolPreparedStatements: true
- maxOpenPreparedStatements: 20
- redis:
- host: 47.114.1.200
- port: 6379
- password: dyym
- database: 1
- #连接超时时间(毫秒)
- timeout: 10000
- jedis:
- pool:
- #连接池最大连接数(使用负值表示没有限制)
- max-active: 20
- #连接池最大阻塞等待时间(使用负值表示没有限制)
- max-wait: 10000
- #连接池中的最大空闲连接
- max-idle: 10
- #连接池中的最小空闲连接
- min-idle: 5
- mybatis:
- mapperLocations: classpath:config/mybatis/*.xml
- # configuration:
- # log-impl: org.apache.ibatis.logging.stdout.StdOutImpl
- swagger:
- base-package: com.ym.mec.web.controller
- ##认证
- security:
- oauth2:
- client:
- client-id: app
- client-secret: app
- resource:
- token-info-uri: http://localhost:8001/oauth/check_token
- #spring boot admin 相关配置
- management:
- endpoints:
- web:
- exposure:
- include: "*"
- endpoint:
- health:
- show-details: ALWAYS
- ribbon:
- ReadTimeout: 600000
- ConnectTimeout: 60000
- logging:
- level:
- com.ym.mec.auth.api.client.SysUserFeignService: INFO
- message:
- debugMode: true
- ##支付流水隐藏
- payment:
- hiddenMode: false
- #隐藏的支付方式
- channel: YQPAY
- eseal:
- tsign:
- projectid: 4438776254
- projectSecret: a94cf63d6361084d232f345d71321691
- apisUrl: http://smlitsm.tsign.cn:8080/tgmonitor/rest/app!getAPIInfo2
- push:
- jiguang:
- reqURL: https://api.jpush.cn/v3/push
- appKey:
- student: 0e7422e1d6e73637e678716a
- teacher: 7e0282ca92c12c8c45a93bb3
- system: 496fc1007dea59b1b4252d2b
- masterSecret:
- student: c2361016604eab56ab2db2ac
- teacher: d47430e2f4755ef5dc050ac5
- system: a5e51e9cdb25417463afbf7a
- apns_production: false
|