Fix docsZip gradle task and doc links
This commit is contained in:
@@ -424,7 +424,7 @@ asciidoctorPdf {
|
||||
sourceDir "$buildDir/asciidoc"
|
||||
inputs.dir(sourceDir)
|
||||
sources {
|
||||
include 'index-single.adoc'
|
||||
include 'index.adoc'
|
||||
}
|
||||
options doctype: 'book'
|
||||
attributes 'icons': 'font',
|
||||
@@ -556,11 +556,11 @@ task docsZip(type: Zip, dependsOn: [reference]) {
|
||||
into 'api'
|
||||
}
|
||||
|
||||
from ('build/asciidoc/html5') {
|
||||
from ('build/docs/asciidoc') {
|
||||
into 'reference/html'
|
||||
}
|
||||
|
||||
from ('build/asciidoc/pdf') {
|
||||
from ('build/docs/asciidocPdf') {
|
||||
include 'index.pdf'
|
||||
rename 'index.pdf', 'spring-amqp-reference.pdf'
|
||||
into 'reference/pdf'
|
||||
|
||||
@@ -252,7 +252,7 @@ PooledChannelConnectionFactory pcf() throws Exception {
|
||||
|
||||
This factory manages a single connection and two `ThreadLocal` s, one for transactional channels, the other for non-transactional channels.
|
||||
This factory ensures that all operations on the same thread use the same channel (as long as it remains open).
|
||||
This facilitates <<strict-ordering>> without the need for <<scoped-operations>>.
|
||||
This facilitates strict message ordering without the need for <<scoped-operations>>.
|
||||
To avoid memory leaks, if your application uses many short-lived threads, you must call the factory's `closeThreadChannel()` to release the channel resource.
|
||||
|
||||
====== `CachingConnectionFactory`
|
||||
|
||||
@@ -112,7 +112,7 @@ See <<template-confirms>> for more information.
|
||||
Also, the publisher confirm type is now specified with the `ConfirmType` enum instead of the two mutually exclusive setter methods.
|
||||
|
||||
The `RabbitConnectionFactoryBean` now uses TLS 1.2 by default when SSL is enabled.
|
||||
See <<rabbitconnectionfactorybean-configuring-ssl>> for more information.
|
||||
See <<rabbitconnectionfactorybean-and-configuring-ssl>> for more information.
|
||||
|
||||
===== New MessagePostProcessor Classes
|
||||
|
||||
@@ -203,7 +203,7 @@ See `setReplyErrorHandler` on the `RabbitTemplate`.
|
||||
===== Message Conversion
|
||||
|
||||
We introduced a new `Jackson2XmlMessageConverter` to support converting messages from and to XML format.
|
||||
See <<Jackson2XmlMessageConverter>> for more information.
|
||||
See <<jackson2xml>> for more information.
|
||||
|
||||
===== Management REST API
|
||||
|
||||
|
||||
@@ -72,12 +72,12 @@ Retries are delayed as follows: `N ^ log(N)`, where `N` is the retry number.
|
||||
| useSsl
|
||||
| false
|
||||
| Whether to use SSL for the RabbitMQ connection.
|
||||
See <<_rabbitconnectionfactorybean_and_configuring_ssl>>
|
||||
See <<rabbitconnectionfactorybean-configuring-ssl>>
|
||||
|
||||
| verifyHostname
|
||||
| true
|
||||
| Enable server hostname verification for TLS connections.
|
||||
See <<_rabbitconnectionfactorybean_and_configuring_ssl>>
|
||||
See <<rabbitconnectionfactorybean-configuring-ssl>>
|
||||
|
||||
| sslAlgorithm
|
||||
| null
|
||||
|
||||
Reference in New Issue
Block a user