1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889 |
- 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
- mapperLocations: "classpath:mybatis/**/*Dao.xml"
- typeAliasesPackage: com.rongwei.bsentity.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/
|