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: posts/2025-08-12-25.0.0.8.adoc
+9-9Lines changed: 9 additions & 9 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -128,7 +128,7 @@ image::img/blog/blog_btn_stack.svg[Ask a question on Stack Overflow, align="cent
128
128
[#microprofile]
129
129
== MicroProfile 7.1
130
130
131
-
MicroProfile 7.1 (`MP 7.1`) is a minor release, which has the following MicroProfile component specifications and works with Jakarta EE 10 Core Profile:
131
+
MicroProfile 7.1 (`MP 7.1`) is a minor release which has the following MicroProfile component specifications and works with Jakarta EE 10 Core Profile:
132
132
133
133
- link:https://jakarta.ee/specifications/coreprofile/10/[Jakarta EE 10 Core Profile]
@@ -158,7 +158,7 @@ To enable MicroProfile 7.1, add the following feature to your `server.xml`:
158
158
[#telemetry]
159
159
=== MicroProfile Telemetry 2.1
160
160
161
-
MicroProfile Telemetry 2.1(`mpTelemetry-2.1`) provides developers with updated Open Telemetry technology. The feature now uses OpenTelemetry v1.48.0, which was updated from v1.39.0. The previously exposed experimental APIs are now stable.
161
+
MicroProfile Telemetry 2.1(`mpTelemetry-2.1`) provides developers with updated Open Telemetry technology. The feature now uses OpenTelemetry v1.48.0, which is updated from v1.39.0. The previously exposed experimental APIs are now stable.
162
162
163
163
```xml
164
164
<featureManager>
@@ -185,15 +185,15 @@ For more information about MicroProfile Telemetry, see the following links:
185
185
186
186
OpenAPI is a standardized way of documenting REST APIs in a JSON or YAML format. MicroProfile OpenAPI helps to generate and serve OpenAPI documentation for REST applications that are built by using JAX-RS or Jakarta restfulWS. This can be useful for developers to test out the API during development, or for people who use API in production.
187
187
188
-
To use the new MicroProfile OpenAPI 4.1 feature, first add the feature to your `server.xml`:
188
+
To use the new MicroProfile OpenAPI 4.1 (`mpOpenAPI-4.1`) feature, first add the feature to your `server.xml`:
189
189
190
190
```xml
191
191
<featureManager>
192
192
<feature>mpOpenAPI-4.1</feature>
193
193
</featureManager>
194
194
```
195
195
196
-
Next, deploy any REST application. Then, in a web browser, go to `/openapi` on the Liberty server to view the YAML OpenAPI document, or go to `/openapi/ui` for a user interface to browse through the documentation. To enhance the documentation, use link:https://download.eclipse.org/microprofile/microprofile-open-api-4.1/apidocs/[annotations] in code to add things like textual descriptions to each method. The annotations are available as a maven dependency:
196
+
Next, deploy any REST application. Then, in a web browser, go to `/openapi` on the Liberty server to view the YAML OpenAPI document, or go to `/openapi/ui` for a user interface to browse through the documentation. To enhance the documentation, use link:https://download.eclipse.org/microprofile/microprofile-open-api-4.1/apidocs/[annotations] in code to add additional information, like textual descriptions, to each method. The annotations are available as a maven dependency:
197
197
198
198
```xml
199
199
<dependency>
@@ -209,12 +209,12 @@ MicroProfile OpenAPI 4.1 is a small release which adds:
209
209
- The ability to set the link:https://spec.openapis.org/oas/v3.1.0.html#fixed-fields[`jsonSchemaDialect` field on the OpenAPI object] using the link:https://download.eclipse.org/microprofile/microprofile-open-api-4.1/apidocs/org.eclipse.microprofile.openapi/org/eclipse/microprofile/openapi/models/OpenAPI.html#setJsonSchemaDialect(java.lang.String)[model API]
210
210
- New methods `hasExtension` and `getExtension` on link:https://download.eclipse.org/microprofile/microprofile-open-api-4.1/apidocs/org.eclipse.microprofile.openapi/org/eclipse/microprofile/openapi/models/Extensible.html[`Extensible`] in the model API
211
211
212
-
More information about MicroProfile OpenAPI can be found in
212
+
For more information about MicroProfile OpenAPI, see:
213
213
214
-
- the Open Liberty link:https://openliberty.io/guides/microprofile-openapi.html[guide]
215
-
- the Open Liberty link:https://openliberty.io/docs/latest/documentation-openapi.html[documentation]
216
-
- the link:https://download.eclipse.org/microprofile/microprofile-open-api-4.1/apidocs/[javadoc]
217
-
- the link:https://download.eclipse.org/microprofile/microprofile-open-api-4.1/microprofile-openapi-spec-4.1.html[specification]
214
+
- The Open Liberty link:https://openliberty.io/guides/microprofile-openapi.html[guide]
215
+
- The Open Liberty link:https://openliberty.io/docs/latest/documentation-openapi.html[documentation]
216
+
- The link:https://download.eclipse.org/microprofile/microprofile-open-api-4.1/apidocs/[javadoc]
217
+
- The link:https://download.eclipse.org/microprofile/microprofile-open-api-4.1/microprofile-openapi-spec-4.1.html[specification]
0 commit comments