You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: _versions/main/guides/rest.adoc
+8-2Lines changed: 8 additions & 2 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -138,7 +138,7 @@ public static class MyApplication extends Application {
138
138
----
139
139
140
140
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
142
142
don't want to use an annotation.
143
143
144
144
=== Declaring endpoints: HTTP methods
@@ -1652,7 +1652,7 @@ This feature is introduced as a Technology Preview and is disabled by default.
1652
1652
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.
1653
1653
If you implement this feature, run tests to assess its effect on your applications.
1654
1654
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`:
0 commit comments