Hi.Thank you for your help.
My project use Spring cloud ZuulProxy and Camunda Engine.
@SpringBootApplication
@EnableTransactionManagement
@EnableZuulProxy
public class Application {
public static void main(String[] args) throws Exception {
SpringApplication.run(Application.class, args);
}
}
The project start filed, the error log:
error log:
Error creating bean with name ‘org.springframework.cloud.netflix.zuul.ZuulProxyConfiguration’
Description:
Field processEngine in org.camunda.bpm.engine.spring.SpringProcessEngineServicesConfiguration required a bean of type ‘org.camunda.bpm.engine.ProcessEngine’ that could not be found.
Action:
Consider defining a bean of type ‘org.camunda.bpm.engine.ProcessEngine’ in your configuration.
I use the way to solve from https://github.com/camunda/camunda-bpm-spring-boot-starter/issues/41. but without success.
Thank you.Have a nice day.