ludc
2023-03-27 82a410d9ec7a5d15eed27e9990cff371feab43a1
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
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
#####应用基本配置
app:
  name: web
  group: 北京宏博远达科技有限公司
  description: 平台B/S客户端
  private-token-key: vciweb20210212
###tomcat相关的配置
server:
  port: 12000
  servlet:
    context-path: /web
###log4j2的配置,需要哪个包下的文件开启某个等级,就直接xxxxx: yy这样方式
logging:
  config: "classpath:log4j2-spring-prod.xml"
  level:
    com.vci: debug
  root: info
###本项目的配置,注意spring家族读取配置时,大写字母需要转换为-的方式,而feign需要大小写完全相同
session:
  session-info-storage-type: "database"
  database-platform: oracle
  clear-session-on-start: false
  ###是否开启用户在线检查
  checkSessionTimeout: false
  ###客户端判断超时轮询时间,单位为秒
  sessionInterval: 10
  ###客户端最大存在时间,单位为分钟
  sessionIdlTime: 30
  ###超时提醒时间,单位为分钟
  sessionRemind: 3
###兼容性,必须设置为这个
user-table-compatibility: "platform1"
#缓存配置
###corba的配置
jacorb:
  client:
    enabled: true
    url: "corbaloc::localhost:30000/NameService"
    instanceIdentity: "platform-sf"
#受2021版本的部分接口的影响,下面的内容需要配置,
vciPlatform:
  objectServiceUrl: "2"
#缓存
spring:
  # redis配置
  redis: ###### redis 配置
    enabled: true  #true,启用redi,false不启用,默认false,配置文件没有这些默认不启用redis
    host: vciserver  # ip地址
    database: 0  # redis数据库  0-15
    port: 6379  # 端口号
    password: vcitest # 无密码不填
    timeout: 30000s   # 连接超时时间 (默认1天)
    lettuce:
      shutdown-timeout: 100ms # 关闭超时时间 默认 100ms
      pool: # lettuce 连接池
        max-active: 8 # 连接池最大连接数 默认 8(-1 :表示没有限制)
        max-wait: 60000ms # 连接池最大阻塞等待时间 默认-1ms (-1 :表示没有限制) 这里设置1分钟
        max-idle: 8 # 最大空闲连接  默认 8
        min-idle: 0 # 最小空闲连接  默认 0
  cache:
    type: redis
  config:
    location:
##web配置
vciweb:
  debug: true
 
dataSyncPush:
  isStart: true
  cronTime: "0 0/1 * * * ?"
 
attrconfig:
  #系统集成
  system_attrmap: {RLM: D:\RLM.xml,PDM: D:\pdm.xml}