Error Creating Bean with ZeebeClientHealthIndicator

Hi Team,
I am running local Camunda-manual setup 8.3 and try to run the spring boot. But I am getting below exception while running spring boot. Can anyone help me on this.

Exception: Error Creating Bean with ZeebeClientHealthIndicator defineed in the class path resorce [io/camunda/zeebe/spring/client/configuration/ZeebeActuatorConfiguration.class]: Unsatisfied dependency expressed through method ‘zeebeClientHealthIndicator’ parameter 0: Error creating bean with name ‘zeebeClient’
defined in class path resource [io/camunda/zeebe/spring/client/configuration/ZeebeClientProdAutoConfiguration.class] Failed to instantiate
[io.camunda.zeebe.client.ZeebeClient]: Factory method ‘zeebeClient’ threw exception with message: target

Project details in POM:

org.springframework.boot
spring-boot-starter-parent
3.1.7

org.springframework.boot spring-boot-starter-actuator org.springframework.boot spring-boot-starter-web
	<dependency>
		<groupId>org.springframework.boot</groupId>
		<artifactId>spring-boot-devtools</artifactId>
		<scope>runtime</scope>
		<optional>true</optional>
	</dependency>
	<dependency>
		<groupId>org.projectlombok</groupId>
		<artifactId>lombok</artifactId>
		<optional>true</optional>
	</dependency>
	<dependency>
		<groupId>org.springframework.boot</groupId>
		<artifactId>spring-boot-starter-test</artifactId>
		<scope>test</scope>
	</dependency>
	<dependency>
		<groupId>io.camunda.spring</groupId>
		<artifactId>spring-boot-starter-camunda</artifactId>
		<version>8.3.4.5</version>
	</dependency>

Hi @vinothkumar
Could you share a simple test project to reproduce the issue?
I see no issues when running the spring boot with the following dependencies but I might miss something here.

<dependencies>
        <dependency>
            <groupId>org.springframework.boot</groupId>
            <artifactId>spring-boot-devtools</artifactId>
            <scope>runtime</scope>
            <version>3.2.2</version>
            <optional>true</optional>
        </dependency>
        <dependency>
            <groupId>org.projectlombok</groupId>
            <artifactId>lombok</artifactId>
            <version>1.18.30</version>
            <optional>true</optional>
        </dependency>
        <dependency>
            <groupId>org.springframework.boot</groupId>
            <artifactId>spring-boot-starter-test</artifactId>
            <version>3.2.2</version>
            <scope>test</scope>
        </dependency>
        <dependency>
            <groupId>io.camunda.spring</groupId>
            <artifactId>spring-boot-starter-camunda</artifactId>
            <version>8.3.4.5</version>
        </dependency>
    </dependencies>

Regards,
Alex

This topic was automatically closed 90 days after the last reply. New replies are no longer allowed.