Skip to content

Commit 0a85258

Browse files
committed
Sync documentation of main branch
1 parent 0a3b17f commit 0a85258

File tree

2 files changed

+10
-4
lines changed

2 files changed

+10
-4
lines changed

_versions/main/guides/blaze-persistence.adoc

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -51,7 +51,7 @@ Add the following dependencies to your project:
5151
</dependency>
5252
<dependency>
5353
<groupId>com.blazebit</groupId>
54-
<artifactId>blaze-persistence-integration-hibernate-6.2</artifactId>
54+
<artifactId>blaze-persistence-integration-hibernate-7.0</artifactId>
5555
<scope>runtime</scope>
5656
</dependency>
5757
----
@@ -60,7 +60,7 @@ Add the following dependencies to your project:
6060
.Using Gradle
6161
----
6262
implementation("com.blazebit:blaze-persistence-integration-quarkus-3")
63-
runtimeOnly("com.blazebit:blaze-persistence-integration-hibernate-6.2")
63+
runtimeOnly("com.blazebit:blaze-persistence-integration-hibernate-7.0")
6464
----
6565

6666
The use in native images requires a dependency on the entity view annotation processor that may be extracted into a separate `native` profile:

_versions/main/guides/rest.adoc

Lines changed: 8 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -138,7 +138,7 @@ public static class MyApplication extends Application {
138138
----
139139

140140
This will cause all rest endpoints to be resolve relative to `/api`, so the endpoint above with `@Path("rest")` would
141-
be accessible at `/api/rest/`. You can also set the `quarkus.rest.path` build time property to set the root path if you
141+
be accessible at `/api/rest/`. You can also set the <<quarkus-rest-common_quarkus-rest-path,`quarkus.rest.path`>> build time property to set the root path if you
142142
don't want to use an annotation.
143143

144144
=== Declaring endpoints: HTTP methods
@@ -1652,7 +1652,7 @@ This feature is introduced as a Technology Preview and is disabled by default.
16521652
By eliminating reliance on reflection during deserialization, applications can achieve better performance and reduced memory consumption, particularly for native applications where reflection can introduce overhead.
16531653
If you implement this feature, run tests to assess its effect on your applications.
16541654

1655-
To enable this feature, set the following configuration property to `true`:
1655+
To enable this feature, set the <<quarkus-rest-jackson_quarkus-rest-jackson-optimization-enable-reflection-free-serializers,`quarkus.rest.jackson.optimization.enable-reflection-free-serializers`>> configuration property to `true`:
16561656

16571657
`quarkus.rest.jackson.optimization.enable-reflection-free-serializers=true`.
16581658

@@ -3374,3 +3374,9 @@ In addition to the Server side, Quarkus REST comes with a new MicroProfile REST
33743374
Please note that the `quarkus-resteasy-client` extension may not be used with Quarkus REST, use `quarkus-rest-client` instead.
33753375

33763376
See the xref:rest-client.adoc[REST Client Guide] for more information about the REST client.
3377+
3378+
[[rest-configuration-reference]]
3379+
== Quarkus REST Configuration Reference
3380+
3381+
include::{generated-dir}/config/quarkus-rest-common_quarkus.rest.adoc[leveloffset=+1, opts=optional]
3382+
include::{generated-dir}/config/quarkus-rest-jackson.adoc[leveloffset=+1, opts=optional]

0 commit comments

Comments
 (0)