优化:启动Office进程改为同步执行,防止程序运行起来Office进程还没启动

pull/28/head
陈精华 3 years ago
parent fb6adf316f
commit d98cd5d9a9

@ -46,15 +46,11 @@ public class OfficePluginManager {
@Value("${office.plugin.task.timeout:5m}")
private String timeOut;
@PostConstruct
public void initOfficeManager() {
new Thread(this::startOfficeManager).start();
}
/**
* Office
*/
private void startOfficeManager(){
@PostConstruct
public void startOfficeManager(){
File officeHome = OfficeUtils.getDefaultOfficeHome();
if (officeHome == null) {
throw new RuntimeException("找不到office组件请确认'office.home'配置是否有误");

Loading…
Cancel
Save