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: _data/versioned/main/index/quarkus.yaml
+9-9Lines changed: 9 additions & 9 deletions
Original file line number
Diff line number
Diff line change
@@ -243,7 +243,7 @@ types:
243
243
- title: Configure data sources in Quarkus
244
244
filename: datasource.adoc
245
245
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"
247
247
id: datasources
248
248
type: tutorial
249
249
url: /guides/datasource
@@ -539,7 +539,7 @@ types:
539
539
- title: Dev Services for Databases
540
540
filename: databases-dev-services.adoc
541
541
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"
543
543
type: guide
544
544
url: /guides/databases-dev-services
545
545
- title: Dev Services for Elasticsearch
@@ -961,7 +961,7 @@ types:
961
961
- title: Simplified Hibernate ORM with Panache and Kotlin
962
962
filename: hibernate-orm-panache-kotlin.adoc
963
963
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"
965
965
type: guide
966
966
url: /guides/hibernate-orm-panache-kotlin
967
967
- title: Simplified Hibernate Reactive with Panache
@@ -979,13 +979,13 @@ types:
979
979
- title: Simplified MongoDB with Panache and Kotlin
980
980
filename: mongodb-panache-kotlin.adoc
981
981
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"
983
983
type: guide
984
984
url: /guides/mongodb-panache-kotlin
985
985
- title: SmallRye Fault Tolerance
986
986
filename: smallrye-fault-tolerance.adoc
987
987
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"
989
989
type: guide
990
990
url: /guides/smallrye-fault-tolerance
991
991
- title: SmallRye GraphQL
@@ -1015,14 +1015,14 @@ types:
1015
1015
- title: Testing Your Application
1016
1016
filename: getting-started-testing.adoc
1017
1017
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"
1019
1019
id: testing
1020
1020
type: guide
1021
1021
url: /guides/getting-started-testing
1022
1022
- title: Tips for writing native applications
1023
1023
filename: writing-native-applications-tips.adoc
1024
1024
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"
1026
1026
type: guide
1027
1027
url: /guides/writing-native-applications-tips
1028
1028
- title: Update projects to the latest version of Quarkus
@@ -1158,7 +1158,7 @@ types:
1158
1158
- title: Using SSL With Native Executables
1159
1159
filename: native-and-ssl.adoc
1160
1160
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"
1162
1162
type: guide
1163
1163
url: /guides/native-and-ssl
1164
1164
- title: Using Security with .properties File
@@ -1265,7 +1265,7 @@ types:
1265
1265
- title: Validation with Hibernate Validator
1266
1266
filename: validation.adoc
1267
1267
summary: This guide covers how to use Hibernate Validator/Bean Validation in your REST services.
Copy file name to clipboardExpand all lines: _versions/main/guides/cdi-reference.adoc
+1-1Lines changed: 1 addition & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -962,7 +962,7 @@ public class Processor {
962
962
<1> The injected instance is an _immutable list_ of the contextual references of the _disambiguated_ beans.
963
963
<2> For this injection point the required type is `Service` and no additional qualifiers are declared.
964
964
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.
966
966
967
967
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>`.
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
+
1367
1369
== Mocking the client for tests
1368
1370
If you use a client injected with the `@RestClient` annotation, you can easily mock it for tests.
1369
1371
You can do it with Mockito's `@InjectMock` or with `QuarkusMock`.
0 commit comments