zhubaomin
2024-09-18 cfcea32f2af158fd56d901548a4fbe52f30f375f
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
spring:
  profiles:
    include: global, database, database-ym, database-pj, database-test
 
#actutor的web端口
management:
  server:
    port: ${pipIrr.sell.actutorPort}
#web服务端口,8084
server:
  port: ${pipIrr.sell.webPort}
  servlet:
    context-path: /sell #web访问上下文路径
    context-parameters:
      #GenerateIdSetSuffixListener中应用,取值范围是0-99
      idSuffix: ${pipIrr.sell.idSuffix}
 
#阿里短信服务
aliyun:
  sms:
    sms-access-key-id: LTAI5tPCmHqfyJ9YnoPorEwt
    sms-access-key-secret: sU2CoLdNgcjnf5uPPU2dY7NNGNvOIX
    sms-template-code: SMS_460776024
    sms-sign-name: 大禹节水
  #redis
  redis:
    host: localhost
    #password:我是没配置密码的
    port: 6379
    database: 6 #操作的是6号数据库
    pool:
      max-active: 8 #最大连接数
      max-wait: -1 #连接池最大阻塞等待时间 -1表示无限
      max-idle: 4 #连接池中的最大空闲连接
      min-idle: 0 #连接池中的最小空闲连接