123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122 |
- spring:
- profiles:
- active: dev
- application:
- name: rw-quality-inspection
- jta:
- atomikos:
- properties:
- log-base-name: rwbusinesslog
- servlet:
- multipart:
- max-file-size: 100MB
- max-request-size: 1000MB
- main:
- allow-bean-definition-overriding: true
- server:
- port: 9689
- management:
- endpoints:
- web:
- exposure:
- include: "*"
- feign:
- client:
- config:
- default:
- connectTimeout: 5000
- readTimeout: 5000
- sentinel:
- enabled: true
- jwt:
- token-header: Authorization
- expire: 14400
- rsa-secret: xx1WET12^%3^(WE45
- client:
- id: ace-auth
- secret: 123456
- token-header: x-client-token
- expire: 14400
- rsa-secret: x2318^^(*WRYQWR(QW&T
- mybatis-plus:
- configuration:
- # log-impl: org.apache.ibatis.logging.stdout.StdOutImpl
- log-impl: org.apache.ibatis.logging.slf4j.Slf4jImpl
- map-underscore-to-camel-case: false
- #basepackage: com.rongwei.rwadmin.system.dao
- xmlLocation:
- - classpath:mybatis/**/*Dao.xml
- - classpath*:mybatis/**/*Dao.xml
- mapperLocations:
- - "classpath:mybatis/**/*Dao.xml"
- - "classpath*:mybatis/**/*Dao.xml"
- typeAliasesPackage:
- - com.rongwei.bsentity.domain
- - com.rongwei.rwadmincommon.**.domain
- global-config:
- db-config:
- logic-delete-value: 1
- logic-not-delete-value: 0
- column-like: true
- #onlyoffice配置
- onloyoffice:
- token:
- secret: 7QbEwl3MpE5mXinkecydGwhre7sJWN
- expire: 240 # 分钟
- office:
- # 本机地址,需要注意【这个ip需要与[api]中的ip能ping通】
- ip: http://61.177.40.178:4300/mlApi/common
- # onlyoffice服务器的js文件,ip是服务器地址
- api: http://61.177.40.178:8888/web-apps/apps/api/documents/api.js
- # 交互地址
- callbackUrl: /onlyoffice/callback?fileId=
- # 文件下载地址
- downloadUrl: /onlyoffice/downloadFile/
- lang: zh
- # logo:
- # image: https://www.risencn.com/r/cms/www/default/risen/public/img/header-logo1.png
- # imageEmbedded: https://www.risencn.com/r/cms/www/default/risen/public/img/header-logo1.png
- # url: http://www.baidu.com
- # 回退地址
- goBack: ${office.ip}
- # 可查看类型
- viewedDocs: [.pdf,.djvu,.xps,.oxps]
- # 可编辑类型
- editedDocs: [.docx,.xlsx,.csv,.pptx,.txt,.docxf]
- # 可类型转换类型
- convertDocs: [.docm,.dotx,.dotm,.dot,.doc,.odt,.fodt,.ott,.xlsm,.xlsb,.xltx,.xltm,.xlt,.xls,.ods,.fods,.ots,.pptm,.ppt,.ppsx,.ppsm,.pps,.potx,.potm,.pot,.odp,.fodp,.otp,.rtf,.mht,.html,.htm,.xml,.epub,.fb2]
- # 报送
- bs-provider:
- url: http://61.177.40.178:5500/api
- getOrgListUrl: ${bs-provider.url}/rw-business-server/business/common/getOrgListData
- #顽症
- wz-provider:
- url: http://61.177.40.178:5500/api
- syncWzDataUrl: ${wz-provider.url}//PersistentDisease/detailedList/syncByData
- #luckysheet
- luckysheet-provider:
- url: http://127.0.0.1:9004
- sso:
- appid: ZPMCZLBY
- grantType: authorization_code
- appKey: 240607094900F2Krofmj5G1iUJSXBVq
- getTokenUrl: http://10.28.79.40:9995/websso/open/token
- getUserInfoUrl: http://10.28.79.40:9995/websso/open/userinfo
- #redis通道名称
- redis.channel: luckysheet.channel
- #表格中块的大小,新增加时写入每一个sheet的第一个模块中
- row_size: 1500
- col_size: 1500
- #使用服务器类型
- servertype: tomcat
|