Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add Windows support for Java 17 setup in local installation doc #527

Open
wants to merge 1 commit into
base: main
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
18 changes: 18 additions & 0 deletions content/documentation/pages/1-installation/1-local/1-docker.md
Original file line number Diff line number Diff line change
Expand Up @@ -297,10 +297,28 @@ To learn more about the monitoring experience in Spring Cloud Data Flow with Pro

Currently Spring Cloud Data Flow defaults to Java 8 when running applications. If you wish to run Java 17 applications set the `BP_JVM_VERSION` to `-jdk17` as shown below:

<!--TABS-->

<!--Linux / OSX-->

```bash
export BP_JVM_VERSION=-jdk17
```

<!--Windows (Cmd)-->

```bash
set BP_JVM_VERSION=-jdk17
```

<!--Windows (PowerShell) -->

```bash
$Env:BP_JVM_VERSION="-jdk17"
```

<!--END_TABS-->

## Debugging

The [Debug Stream Applications](%currentPath%/installation/local/docker-customize/#debug-stream-applications) guide shows how to enable remote debugging for Stream Applications deployed by Data Flow.
Expand Down