【spring boot搭建Excel,word文档文件在线预览解决方案】
前言碎语
此博文分享的项目为博主在公司期间为解决业务问题而建设的,解决了文件文档在线预览的问题,对标业内付费产品有【永中office】【office365】【idocv】等,在取得公司高层同意后以Apache协议开源出来反哺社区,在此特别感谢领导@唐老大的支持以及@端木详笑的贡献。该项目基本支持主流办公文档的在线预览,如doc,docx,Excel,pdf,txt,zip,rar,图片等等
项目地址:码云:https://gitee.com/kekingcn/file-online-preview
github:https://github.com/kekingcn/file-online-preview
在线体验
地址:http://58.246.254.194:8012/
预览相关展示
Excel文件预览效果
word文档预览效果
压缩包文件预览效果
图片文件预览效果,可缩放旋转等
快速开始
项目使用技术
- redis
- OpenOffice或者LibreOffice
1 |
server.port = 8012spring.http.encoding.charset = utf8## Freemarker 配置spring.freemarker.template-loader-path = classpath:/web/spring.freemarker.cache = falsespring.freemarker.charset = UTF-8spring.freemarker.check-template-location = truespring.freemarker.content-type = text/htmlspring.freemarker.expose-request-attributes = truespring.freemarker.expose-session-attributes = truespring.freemarker.request-context-attribute = requestspring.freemarker.suffix = .ftl#=============================================#spring Redisson配置#===================================#spring.redisson.address = 192.168.1.204:6379##资源映射路径(因为jar方式运行的原因)file.dir = C:\Users\yudian\Desktop\dev\spring.resources.static-locations = classpath:/META-INF/resources/,classpath:/resources/,classpath:/static/,classpath:/public/,file:${file.dir}## openoffice相关配置openOfficePath = /Applications/OpenOffice.app/Contentsoffice.home = C:\Program Files (x86)\OpenOffice 4server.tomcat.uri-encoding = UTF-8converted.file.charset = GBK#======================================#文件上传限制#======================================#spring.http.multipart.max-file-size=100MB |
- 第三步:运行FilePreviewApplication的main方法,服务启动后,访问http://localhost:8012/ 会看到如下界面,代表服务启动成功