camunda 管理员没有回复

问题描述 投票:0回答:1

我在intelliji上有spring boot项目,带有嵌入式camunda,以及以下版本:

        <dependency>
            <groupId>org.camunda.bpm</groupId>
            <artifactId>camunda-external-task-client</artifactId>
            <version>1.2.2</version>
        </dependency>

当我使用网址打开管理工具时

http://localhost:8080/my-project/app/admin/engine/#/setup

它不断加载,我在日志中出现以下异常

WARNING: org.camunda.bpm.engine.rest.exception.RestException: It was not able to load the following file 'app/plugin.css'.
    at org.camunda.bpm.webapp.plugin.resource.AbstractAppPluginRootResource.getAsset(AbstractAppPluginRootResource.java:146)
    at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
    at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62)
    at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43)

虽然当我在朋友的机器上尝试时,它打开没有任何问题!

有什么想法吗

spring-boot intellij-plugin camunda camunda-modeler camunda-plugin
1个回答
0
投票

我通过更改用于启动项目的配置来修复此问题,因为我使用的是 JAR Manifest,而不是类路径文件

© www.soinside.com 2019 - 2024. All rights reserved.