Skip to content

Commit b5abd9c

Browse files
committed
Sync documentation of main branch
1 parent e35f214 commit b5abd9c

File tree

4 files changed

+13
-11
lines changed

4 files changed

+13
-11
lines changed

_data/versioned/main/index/quarkus.yaml

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -243,7 +243,7 @@ types:
243243
- title: Configure data sources in Quarkus
244244
filename: datasource.adoc
245245
summary: Use a unified configuration model to define datasources for Java Database Connectivity (JDBC) and Reactive drivers.
246-
categories: "reactive, data, getting-started"
246+
categories: "getting-started, data, reactive"
247247
id: datasources
248248
type: tutorial
249249
url: /guides/datasource
@@ -539,7 +539,7 @@ types:
539539
- title: Dev Services for Databases
540540
filename: databases-dev-services.adoc
541541
summary: "When testing or running in dev mode Quarkus can provide you with a zero-config database out of the box, a feature we refer to as Dev Services."
542-
categories: "data, tooling"
542+
categories: "tooling, data"
543543
type: guide
544544
url: /guides/databases-dev-services
545545
- title: Dev Services for Elasticsearch
@@ -961,7 +961,7 @@ types:
961961
- title: Simplified Hibernate ORM with Panache and Kotlin
962962
filename: hibernate-orm-panache-kotlin.adoc
963963
summary: This explains the specifics of using Hibernate ORM with Panache in a Kotlin project.
964-
categories: "data, alt-languages"
964+
categories: "alt-languages, data"
965965
type: guide
966966
url: /guides/hibernate-orm-panache-kotlin
967967
- title: Simplified Hibernate Reactive with Panache
@@ -979,13 +979,13 @@ types:
979979
- title: Simplified MongoDB with Panache and Kotlin
980980
filename: mongodb-panache-kotlin.adoc
981981
summary: This guide covers the usage of MongoDB using active records and repositories in a Kotlin project.
982-
categories: "data, alt-languages"
982+
categories: "alt-languages, data"
983983
type: guide
984984
url: /guides/mongodb-panache-kotlin
985985
- title: SmallRye Fault Tolerance
986986
filename: smallrye-fault-tolerance.adoc
987987
summary: This guide demonstrates how your Quarkus application can utilize the SmallRye Fault Tolerance specification through the SmallRye Fault Tolerance extension.
988-
categories: "web, observability"
988+
categories: "observability, web"
989989
type: guide
990990
url: /guides/smallrye-fault-tolerance
991991
- title: SmallRye GraphQL
@@ -1015,14 +1015,14 @@ types:
10151015
- title: Testing Your Application
10161016
filename: getting-started-testing.adoc
10171017
summary: "This guide covers testing in JVM mode, native mode, and injection of resources into tests"
1018-
categories: "core, tooling, native"
1018+
categories: "core, native, tooling"
10191019
id: testing
10201020
type: guide
10211021
url: /guides/getting-started-testing
10221022
- title: Tips for writing native applications
10231023
filename: writing-native-applications-tips.adoc
10241024
summary: This guide is a collection of tips to help you solve the problems you encounter when compiling applications to native executable.
1025-
categories: "writing-extensions, core, native"
1025+
categories: "core, writing-extensions, native"
10261026
type: guide
10271027
url: /guides/writing-native-applications-tips
10281028
- title: Update projects to the latest version of Quarkus
@@ -1158,7 +1158,7 @@ types:
11581158
- title: Using SSL With Native Executables
11591159
filename: native-and-ssl.adoc
11601160
summary: "In this guide, we will discuss how you can get your native images to support SSL, as native images don't support it out of the box."
1161-
categories: "security, core, native"
1161+
categories: "core, security, native"
11621162
type: guide
11631163
url: /guides/native-and-ssl
11641164
- title: Using Security with .properties File
@@ -1265,7 +1265,7 @@ types:
12651265
- title: Validation with Hibernate Validator
12661266
filename: validation.adoc
12671267
summary: This guide covers how to use Hibernate Validator/Bean Validation in your REST services.
1268-
categories: "data, web"
1268+
categories: "web, data"
12691269
type: guide
12701270
url: /guides/validation
12711271
- title: Writing JSON REST Services

_versions/main/guides/_attributes.adoc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@
1818
:logstash-image: docker.io/elastic/logstash:7.16.3
1919
:kibana-image: docker.io/elastic/kibana:7.16.3
2020
:keycloak-docker-image: quay.io/keycloak/keycloak:21.0.2
21-
:jandex-version: 3.1.1
21+
:jandex-version: 3.1.2
2222
:jandex-gradle-plugin.version: 1.0.0
2323
:kotlin-version: 1.8.21
2424
:grpc-version: 1.55.1

_versions/main/guides/cdi-reference.adoc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -962,7 +962,7 @@ public class Processor {
962962
<1> The injected instance is an _immutable list_ of the contextual references of the _disambiguated_ beans.
963963
<2> For this injection point the required type is `Service` and no additional qualifiers are declared.
964964

965-
TIP: The list is sorted by priority as defined by `io.quarkus.arc.InjectableBean#getPriority()`. Higher priority goes first. In general, the `@jakarta.annotation.Priority` and `@io.quarkus.arc.Priority` annotations can be used to assign the priority to a class bean, producer method or producer field.
965+
TIP: The list is sorted by priority as defined by `io.quarkus.arc.InjectableBean#getPriority()`. Higher priority goes first. In general, the `@jakarta.annotation.Priority` annotation can be used to assign the priority to a class bean, producer method or producer field.
966966

967967
If an injection point declares no other qualifier than `@All` then `@Any` is used, i.e. the behavior is equivalent to `@Inject @Any Instance<Service>`.
968968

_versions/main/guides/rest-client-reactive.adoc

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1364,6 +1364,8 @@ quarkus.rest-client.logging.body-limit=50
13641364
quarkus.log.category."org.jboss.resteasy.reactive.client.logging".level=DEBUG
13651365
----
13661366

1367+
TIP: REST Client Reactive uses a default `ClientLogger` implementation. You can change it by providing a custom `ClientLogger` instance through CDI or when programmatically creating your client.
1368+
13671369
== Mocking the client for tests
13681370
If you use a client injected with the `@RestClient` annotation, you can easily mock it for tests.
13691371
You can do it with Mockito's `@InjectMock` or with `QuarkusMock`.

0 commit comments

Comments
 (0)