Skip to content

Commit 3798ea0

Browse files
committed
updating docs to have spring boot 3.x banner and not hardcoded deps
1 parent daf4c8b commit 3798ea0

File tree

1 file changed

+5
-6
lines changed
  • daprdocs/content/en/java-sdk-docs/spring-boot

1 file changed

+5
-6
lines changed

daprdocs/content/en/java-sdk-docs/spring-boot/_index.md

+5-6
Original file line numberDiff line numberDiff line change
@@ -11,30 +11,29 @@ By combining Dapr and Spring Boot, we can create infrastructure independent Java
1111
First, we will start with a simple integration covering the `DaprClient` and the [Testcontainers](https://testcontainers.com/) integration, to then use Spring and Spring Boot mechanisms and programming model to leverage the Dapr APIs under the hood. This help teams to remove dependencies such as clients and drivers required to connect to environment specific infrastructure (databases, key-value stores, message brokers, configuration/secret stores, etc.)
1212

1313
{{% alert title="Note" color="primary" %}}
14-
The Spring Boot integration explained in this page is still alpha, hence most artifacts are labeled with 0.13.0.
15-
14+
The Spring Boot integration requires Spring Boot 3.x+ to work. This will not work with Spring Boot 2.x.
15+
The Spring Boot integration still remains in alpha. We need your help and feedback to graduate it.
1616
{{% /alert %}}
1717

1818

1919
## Adding the Dapr and Spring Boot integration to your project
2020

21-
If you already have a Spring Boot application (Spring Boot 3.x+), you can directly add the following dependencies to your project:
22-
21+
If you already have a Spring Boot application, you can directly add the following dependencies to your project:
2322

2423
```
2524
<dependency>
2625
<groupId>io.dapr.spring</groupId>
2726
<artifactId>dapr-spring-boot-starter</artifactId>
28-
<version>0.14.1</version>
2927
</dependency>
3028
<dependency>
3129
<groupId>io.dapr.spring</groupId>
3230
<artifactId>dapr-spring-boot-starter-test</artifactId>
33-
<version>0.14.1</version>
3431
<scope>test</scope>
3532
</dependency>
3633
```
3734

35+
You can find the [latest released version here](https://central.sonatype.com/artifact/io.dapr.spring/dapr-spring-boot-starter).
36+
3837
By adding these dependencies you can:
3938
- Autowire a `DaprClient` to use inside your applications
4039
- Use the Spring Data and Messaging abstractions and programming model that uses the Dapr APIs under the hood

0 commit comments

Comments
 (0)