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
* Add `springio/asciidoctor-extensions/configuration-properties-extension` to draw YAML properly in docs
* Refactor `connections.adoc` for proper `NodeLocator` API
* Show tabs for `ConnectionFactory` sample
* Tabs for Spring Boot properties sample
Signed-off-by: Tran Ngoc Nhan <[email protected]>
Spring Boot application file (`.yaml` or `.properties`)
377
+
378
+
[configprops%novalidate,yaml]
379
+
----
380
+
spring:
381
+
rabbitmq:
382
+
host: ...
383
+
ssl:
384
+
keyStoreType: jks
385
+
trustStoreType: jks
386
+
keyStore: ...
387
+
trustStore: ...
388
+
trustStorePassword: ...
389
+
keyStorePassword: ...
390
+
enabled: true
382
391
----
383
392
384
393
See the https://www.rabbitmq.com/ssl.html[RabbitMQ Documentation] for information about configuring SSL.
@@ -622,7 +631,7 @@ To add `WebFlux` to the class path:
622
631
compile 'org.springframework.amqp:spring-rabbit'
623
632
----
624
633
625
-
You can also use other REST technology by implementing `LocalizedQueueConnectionFactory.NodeLocator` and overriding its `createClient, ``restCall`, and optionally, `close` methods.
634
+
You can also use other REST technology by implementing javadoc:org.springframework.amqp.rabbit.connection.LocalizedQueueConnectionFactory#setNodeLocator(org.springframework.amqp.rabbit.connection.NodeLocator)[LocalizedQueueConnectionFactory#setNodeLocator] and overriding its `createClient`, `restCall`, and optionally, `close` methods.
0 commit comments