Skip to content

Commit f10edd3

Browse files
committed
Sync web site with Quarkus documentation
1 parent 8ad97a1 commit f10edd3

File tree

5 files changed

+27
-16
lines changed

5 files changed

+27
-16
lines changed

_guides/_attributes.adoc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
// Common attributes.
22
// --> No blank lines (it ends the document header)
33
:project-name: Quarkus
4-
:quarkus-version: 3.25.3
4+
:quarkus-version: 3.25.4
55
:quarkus-platform-groupid: io.quarkus.platform
66
// .
77
:maven-version: 3.9.9

_guides/amqp-reference.adoc

Lines changed: 12 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -74,7 +74,7 @@ quarkus.messaging.auto-connector-attachment=false
7474

7575
== Configuring the AMQP Broker access
7676

77-
The AMQP connector connects to AMQP 1.0 brokers such as Apache ActiveMQ or Artemis.
77+
The AMQP connector connects to AMQP 1.0 brokers such as Apache's ActiveMQ Classic or ActiveMQ Artemis.
7878
To configure the location and credentials of the broker, add the following properties in the `application.properties`:
7979

8080
[source, properties]
@@ -318,17 +318,19 @@ mp.messaging.outgoing.orders.address=my-order-queue
318318
If the `address` attribute is not set, the connector uses the channel name.
319319

320320
To use an existing queue, you need to configure the `address`, `container-id` and, optionally, the `link-name` attributes.
321-
For example, if you have an Apache Artemis broker configured with:
321+
For example, if you have an Apache ActiveMQ Artemis broker configured with:
322322

323323
[source, xml]
324324
----
325-
<queues>
326-
<queue name="people">
327-
<address>people</address>
328-
<durable>true</durable>
329-
<user>artemis</user>
330-
</queue>
331-
</queues>
325+
<addresses>
326+
<address name="people">
327+
<anycast>
328+
<queue name="people">
329+
<user>artemis</user>
330+
</queue>
331+
</anycast>
332+
</address>
333+
</addresses>
332334
----
333335

334336
You need the following configuration:
@@ -367,7 +369,7 @@ mp.messaging.incoming.people-out.container-id=bar
367369
mp.messaging.incoming.people-out.link-name=people
368370
----
369371

370-
More details about the AMQP Address model can be found in the https://activemq.apache.org/components/artemis/documentation/2.0.0/address-model.html[Artemis documentation].
372+
More details about the AMQP Address model can be found in the https://activemq.apache.org/components/artemis/documentation/latest/address-model.html[ActiveMQ Artemis documentation].
371373

372374
[[blocking-processing]]
373375
=== Execution model and Blocking processing

_guides/logging.adoc

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -244,6 +244,17 @@ quarkus.log.level=INFO
244244
quarkus.log.category."org.hibernate".level=DEBUG
245245
----
246246

247+
The equivalent in YAML (assuming the https://quarkus.io/guides/config-yaml[Quarkus YAML extension] is included) would be:
248+
[source, yaml]
249+
----
250+
quarkus:
251+
log:
252+
level: INFO
253+
category:
254+
org.hibernate: # The org.hibernate as a single key here is important
255+
level: DEBUG
256+
----
257+
247258
When you set the log level to below `DEBUG`, you must also adjust the minimum log level.
248259
This setting might be applied either globally with the `quarkus.log.min-level` configuration property, or per category:
249260

_guides/security-cors.adoc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -54,7 +54,7 @@ quarkus.http.cors.access-control-allow-credentials=true <7>
5454
----
5555

5656
<1> Enables the CORS filter.
57-
<2> Specifies allowed origins, including a regular expression.
57+
<2> Specifies allowed origins, including a regular expression. When not specified, CORS is not permitted, and only same-origin requests are allowed.
5858
<3> Lists allowed HTTP methods for cross-origin requests.
5959
<4> Declares custom headers that clients can include in requests.
6060
<5> Identifies response headers that clients can access.

_guides/security-keycloak-authorization.adoc

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -525,8 +525,6 @@ public class ProtectedResource {
525525
}
526526
----
527527

528-
NOTE: If you want to use the `AuthzClient` directly, set `quarkus.keycloak.policy-enforcer.enable=true`; otherwise, no bean is available for injection.
529-
530528
[NOTE]
531529
====
532530
To use the `AuthzClient` directly, set `quarkus.keycloak.policy-enforcer.enable=true`.
@@ -535,9 +533,9 @@ Otherwise, no bean is available for injection.
535533

536534
== Mapping protected resources
537535

538-
By default, the extension fetches resources from Keycloak on demand, using their URI to identify and map the application resources that require protection.
536+
By default, the extension uses lazy loading to fetch resources from Keycloak on demand. It uses the request URI to identify and map application resources that require protection.
539537

540-
To disable on-demand fetching and instead pre-load resources at startup, configure the following property:
538+
To disable lazy loading and instead pre-load all resources at startup, configure the following property:
541539

542540
[source,properties]
543541
----

0 commit comments

Comments
 (0)