When I use SpringBoot3.2.5 to integerate the Camunda but it failed, But When I use SpringBoot 2.6.4, it can work normally, Any suggestion is welcomed ~ Thanks
Below is the part of pom.xml I used
<spring-boot.version>3.2.5</spring-boot.version>
......
<dependency>
<groupId>org.camunda.community.rest</groupId>
<artifactId>camunda-platform-7-rest-client-spring-boot-starter</artifactId>
<version>7.17.2</version>
</dependency>
<dependency>
<groupId>org.camunda.bpm.springboot</groupId>
<artifactId>camunda-bpm-spring-boot-starter-external-task-client</artifactId>
<version>7.17.0</version>
</dependency>
The startup Java application is as follows
@SpringBootApplication
@EnableCamundaRestClient
public class ExternalTaskStarterJavaApplication {
public static void main(String[] args) {
SpringApplication.run(ExternalTaskStarterJavaApplication.class, args);
}
}
I have tried to replaced <spring-boot.version>3.2.5</spring-boot.version> with <spring-boot.version>2.6.4</spring-boot.version>, it can work
New contributor
Liangwei Xia is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
Check out our Code of Conduct.