|
123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111 |
- spring:
- application:
- name: ias-local
- mvc:
- locale: zh_CN
- messages:
- basename: ValidationMessages_zh
- jpa:
- database-platform: org.hibernate.dialect.OracleDialect
- open-in-view: false
- cloud:
- nacos:
- discovery:
- enabled: true
- server-addr: 100.64.2.105:8848
- namespace: zhywpt-new-test
- username: nacos
- password: 'Pw=j8PKxV7s9'
- # ip: 127.0.0.1
- # networkInterface: 以太网
- config:
- enabled: true
- file-extension: yaml # 必须修改成yaml
- server-addr: 100.64.2.105:8848
- namespace: zhywpt-new-test
- username: nacos
- password: 'Pw=j8PKxV7s9'
- extension-configs:
- - data-id: db-oracle.yaml
- refresh: true
- - data-id: comm-client.yaml
- refresh: true
- - data-id: redis.yaml
- refresh: true
- - data-id: ats-config.yaml
- refresh: true
- - data-id: minio-client.yaml
- refresh: true
- # 邮件配置
- mail:
- #163的服务主机
- host: smtp.163.com
- # 连接邮件服务器端口(SMTP的非SSl(不加密)的端口号:25;SMTP的SSl(加密)的端口号:465 )
- port: 465
- # 服务协议SMTP(代表是发送邮件)
- protocol: smtp
- # 登录服务器邮箱账号
- username: 13079168756@163.com
- # 登录服务器邮箱授权码(开通SMTP、POP时得到的授权码)
- password: LIVMVNGNCTJMNWZM
- #默认邮件的编码集(MimeMessage 编码,默认UTF-8)
- default-encoding: UTF-8
- # 补充配置(这里具体可以参照Jakarta Mail的扩展配置)
- properties:
- mail:
- smtp:
- # 启用加密连接
- auth: true
- starttls:
- enable: true
- required: true
- # 开启ssl,这里针对smtp.163.com进行配置
- ssl:
- enable: true
- socketFactory:
- port: 465
- class: javax.net.ssl.SSLSocketFactory
-
- # 默认发送方邮箱账号(当程序未指定发件人邮箱则默认取这个)
- from: 13079168756@163.com
- # 邮件接收时间的限制(毫秒)
- timeout: 60000
- # 连接时间的限制(毫秒)
- connectiontimeout: 60000
- # 邮件发送时间的限制(毫秒)
- writetimeout: 60000
- # 日志打印,邮件发送过程的日志会被输出
- debug: true
-
- feign:
- client:
- config:
- default:
- connectTimeout: 10000
- readTimeout: 600000
- server:
- port: 8090
- servlet:
- context-path: /issues/
-
- #应用相关配置
- app:
- nodeNum: 001
- path: D:/devEnv/ias/ #工程的目录,#sso集成默认读取该目录下的oauth_client.properties
- comm:
- # 自定义服务地址map,key为服务名、value为服务地址。如果配置了服务地址,接口调用时请求到该地址,如果没配置,默认请求到gateway
- serviceAddr:
- issues: http://127.0.0.1:8090
- ods: http://100.64.2.98:8092
-
- # 退费接口相关参数
- refund:
- baseUrl: http://10.152.224.67:40588
- authUrl: /api/Login/UserAuthorize
- account: 520201
- password: 2024abC@
- getOriginListAsyncUrl: /api/NewRefund/GetOriginListAsync
- orderPushAsyncUrl: /api/NewRefund/OrderPushAsync
- queryNewRefundAsyncUrl: /api/NewRefund/QueryNewRefundAsync
- getHandleRecordsUrl: /api/NewRefund/GetHandleRecords
- orderSaveAsyncUrl: /api/NewRefund/OrderSaveAsync
|