You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
- spring:
- security:
- oauth2:
- resource-server:
- jwt:
- #issuer-uri: http://192.168.11.241:8090 #认证中心端点,作为资源端的配置、
- issuer-uri: https://login-test.t-aaron.com #认证中心端点,作为资源端的配置、
-
- # 配置数据源
- datasource:
- # 使用阿里的Druid连接池
- type: com.alibaba.druid.pool.DruidDataSource
- driver-class-name: com.mysql.cj.jdbc.Driver
- # 填写你数据库的url、登录名、密码和数据库名
- url: jdbc:mysql://rm-uf6z740323e8053pj.mysql.rds.aliyuncs.com:3306/tuoheng_oidc?useUnicode=true&characterEncoding=UTF-8&serverTimezone=GMT%2b8&useSSL=true&tinyInt1isBit=false
- username: root
- password: TH22#2022
- druid:
- # 连接池的配置信息
- # 初始连接数
- initialSize: 5
- # 最小连接池数量
- minIdle: 5
- # 最大连接池数量
- maxActive: 20
- # 配置获取连接等待超时的时间
- maxWait: 60000
- # 配置间隔多久才进行一次检测,检测需要关闭的空闲连接,单位是毫秒
- timeBetweenEvictionRunsMillis: 60000
- # 配置一个连接在池中最小生存的时间,单位是毫秒
- minEvictableIdleTimeMillis: 300000
- # 配置一个连接在池中最大生存的时间,单位是毫秒
- maxEvictableIdleTimeMillis: 900000
- # 配置检测连接是否有效
- validationQuery: SELECT 1 FROM DUAL
- testWhileIdle: true
- testOnBorrow: false
- testOnReturn: false
- # Redis数据源
- redis:
- # 缓存库默认索引0
- database: 0
- # Redis服务器地址
- host: r-uf6cdzjifj20jszykr.redis.rds.aliyuncs.com
- # Redis服务器连接端口
- port: 6379
- # Redis服务器连接密码(默认为空)
- password:
- # 连接超时时间(毫秒)
- timeout: 6000
- # 默认的数据过期时间,主要用于shiro权限管理
- expire: 2592000
- jedis:
- pool:
- max-active: 1000 # 连接池最大连接数(使用负值表示没有限制)
- max-wait: -1 # 连接池最大阻塞等待时间(使用负值表示没有限制)
- max-idle: 10 # 连接池中的最大空闲连接
- min-idle: 1 # 连接池中的最小空闲连接
- oauth2:
- token:
- issuer: https://login-test.t-aaron.com
|