找不到“groovy”的脚本引擎:scriptEngine 为空

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

错误:

  1. Servlet.service() for servlet [dispatcherServlet] in context with path [] throw exception [Request processing failed;嵌套异常是 org.camunda.bpm.engine.exception.NullValueException: 找不到 'groovy' 的脚本引擎: scriptEngine 为 null] 根本原因

  2. org.camunda.bpm.engine.exception.NullValueException:找不到“groovy”的脚本引擎:scriptEngine 为 null

我的代码 XML:

maven spring-boot groovy workflow camunda
1个回答
0
投票

使用这个依赖这个问题将得到解决

<dependency> <groupId>org.codehaus.groovy</groupId> <artifactId>groovy-jsr223</artifactId> <scope>compile</scope> </dependency>

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