1.kkFileView进程被杀死后无法启动
报错提示:
org.springframework.beans.factory.UnsatisfiedDependencyException: Error creating bean with name 'officeFilePreviewImpl' defined in URL [jar:file:/root/kkFileView-4.1.0-SNAPSHOT/bin/kkFileView-4.1.0-SNAPSHOT.jar!/BOOT-INF/classes!/cn/keking/service/impl/OfficeFilePreviewImpl.class]: Unsatisfied dependency expressed through constructor parameter 1; nested exception is org.springframework.beans.factory.UnsatisfiedDependencyException: Error creating bean with name 'officeToPdfService' defined in URL [jar:file:/root/kkFileView-4.1.0-SNAPSHOT/bin/kkFileView-4.1.0-SNAPSHOT.jar!/BOOT-INF/classes!/cn/keking/service/OfficeToPdfService.class]: Unsatisfied dependency expressed through constructor parameter 0; nested exception is org.springframework.beans.factory.BeanCreationException: Error creating bean with name 'officePluginManager': Invocation of init method failed; nested exception is org.artofsolving.jodconverter.office.OfficeException: failed to start and connect
1.查看application.properties中office.home的配置是否正确(libreoffice地址一般也不用配置)
2.kill掉 ps -ef | grep soffice.bin 查询出的进程信息,后重新启动项目
文章描述了在尝试启动kkFileView服务时遇到的问题,具体是由于SpringBean创建失败,特别是officeFilePreviewImpl和officeToPdfService的依赖注入问题。错误涉及到OfficeException,可能的原因是libreoffice配置不正确或者进程未正常运行。解决方案包括检查application.properties中的office.home配置以及杀死并重启关联的soffice.bin进程。
3680

被折叠的 条评论
为什么被折叠?



