Skip to content

Commit

Permalink
chore: use new spring sdk config in getting started guide (#4439)
Browse files Browse the repository at this point in the history
  • Loading branch information
megglos authored Oct 9, 2024
1 parent 7ff52e7 commit 94aa005
Show file tree
Hide file tree
Showing 2 changed files with 16 additions and 8 deletions.
12 changes: 8 additions & 4 deletions docs/guides/getting-started-java-spring.md
Original file line number Diff line number Diff line change
Expand Up @@ -149,12 +149,16 @@ Due to a bug in 8.6, use the Spring Zeebe SDK version `8.5.0`.

### Configure the Zeebe client

Open your `src/main/resources/application.properties` file, and paste the following snippet to connect to the Self-Managed Zeebe broker:
Open your `src/main/resources/application.yaml` file, and paste the following snippet to connect to the Self-Managed Zeebe broker:

```
zeebe.client.broker.grpcAddress=http://127.0.0.1:26500
zeebe.client.broker.restAddress=http://127.0.0.1:8080
zeebe.client.security.plaintext=true
camunda:
client:
mode: self-managed
zeebe:
enabled: true
grpc-address: http://127.0.0.1:26500
rest-address: http://127.0.0.1:8080
```

### Create a worker
Expand Down
12 changes: 8 additions & 4 deletions versioned_docs/version-8.6/guides/getting-started-java-spring.md
Original file line number Diff line number Diff line change
Expand Up @@ -149,12 +149,16 @@ Due to a bug in 8.6, use the Spring Zeebe SDK version `8.5.0`.

### Configure the Zeebe client

Open your `src/main/resources/application.properties` file, and paste the following snippet to connect to the Self-Managed Zeebe broker:
Open your `src/main/resources/application.yaml` file, and paste the following snippet to connect to the Self-Managed Zeebe broker:

```
zeebe.client.broker.grpcAddress=http://127.0.0.1:26500
zeebe.client.broker.restAddress=http://127.0.0.1:8080
zeebe.client.security.plaintext=true
camunda:
client:
mode: self-managed
zeebe:
enabled: true
grpc-address: http://127.0.0.1:26500
rest-address: http://127.0.0.1:8080
```

### Create a worker
Expand Down

0 comments on commit 94aa005

Please sign in to comment.