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

Update rest-data-panache and spring-data-rest guides to use reactive dep #19995

Merged
Show file tree
Hide file tree
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
8 changes: 4 additions & 4 deletions docs/src/main/asciidoc/rest-data-panache.adoc
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ include::./status-include.adoc[]
* Add the required dependencies to your `pom.xml`
** Hibernate ORM REST Data with Panache extension (`quarkus-hibernate-orm-rest-data-panache`)
** A JDBC driver extension (`quarkus-jdbc-postgresql`, `quarkus-jdbc-h2`, `quarkus-jdbc-mariadb`, ...)
** One of the RESTEasy JSON serialization extensions (`quarkus-resteasy-jackson` or `quarkus-resteasy-jsonb`)
** One of the RESTEasy JSON serialization extensions (`quarkus-resteasy-reactive-jackson` or `quarkus-resteasy-reactive-jsonb`)

[source,xml]
----
Expand All @@ -38,7 +38,7 @@ include::./status-include.adoc[]
</dependency>
<dependency>
<groupId>io.quarkus</groupId>
<artifactId>quarkus-resteasy-jackson</artifactId>
<artifactId>quarkus-resteasy-reactive-jackson</artifactId>
</dependency>
</dependencies>
----
Expand All @@ -50,7 +50,7 @@ include::./status-include.adoc[]

* Add the required dependencies to your `pom.xml`
** MongoDB REST Data with Panache extension (`quarkus-mongodb-rest-data-panache`)
** One of the RESTEasy JSON serialization extensions (`quarkus-resteasy-jackson` or `quarkus-resteasy-jsonb`)
** One of the RESTEasy JSON serialization extensions (`quarkus-resteasy-reactive-jackson` or `quarkus-resteasy-reactive-jsonb`)

[source,xml]
----
Expand All @@ -61,7 +61,7 @@ include::./status-include.adoc[]
</dependency>
<dependency>
<groupId>io.quarkus</groupId>
<artifactId>quarkus-resteasy-jackson</artifactId>
<artifactId>quarkus-resteasy-reactive-jackson</artifactId>
</dependency>
</dependencies>
----
Expand Down
4 changes: 2 additions & 2 deletions docs/src/main/asciidoc/spring-data-rest.adoc
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ First, we need a new project. Create a new project with the following command:
mvn io.quarkus.platform:quarkus-maven-plugin:{quarkus-version}:create \
-DprojectGroupId=org.acme \
-DprojectArtifactId=spring-data-rest-quickstart \
-Dextensions="spring-data-rest,resteasy-jackson,quarkus-jdbc-postgresql" \
-Dextensions="spring-data-rest,resteasy-reactive-jackson,quarkus-jdbc-postgresql" \
-DnoExamples
cd spring-data-rest-quickstart
----
Expand Down Expand Up @@ -76,7 +76,7 @@ For the tests you will also need REST Assured. Add it to the `pom.xml`:
</dependency>
----

Note: both `resteasy-jackson` and `resteasy-jsonb` are supported and can be interchanged.
Note: both `resteasy-reactive-jackson` and `resteasy-reactive-jsonb` are supported and can be interchanged.

== Define the Entity

Expand Down