Skip to content

Commit 6ef9672

Browse files
authored
Fix function misspelling in gateway documentation
* Tweaked the 6.4-6.5 documentation.
1 parent 2352285 commit 6ef9672

File tree

2 files changed

+5
-4
lines changed

2 files changed

+5
-4
lines changed

src/reference/antora/modules/ROOT/pages/changes-6.4-6.5.adoc

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,8 @@ The `AbstractCorrelatingMessageHandler` does not throw an `IllegalArgumentExcept
1515
Instead, such a collection is wrapped into a single reply message.
1616
See xref:aggregator.adoc[Aggregator] for more information.
1717

18-
The `AbstractMessageChannel` beans now throw a special `MessageDispatchingException` when an attempt to send a message to not running application is done.
18+
The `AbstractMessageChannel` beans now throw a special `MessageDispatchingException` when an attempt is made to send a message to an application that is not running.
19+
1920
In general, it is a design error to try to produce a message from `afterPropertiesSet()`, `@PostConstruct` or bean definition methods.
2021
The `SmartLifecycle.start()` is preferred way for this kind of logic, or better to do that via inbound channel adapters.
2122

@@ -82,8 +83,8 @@ See xref:hazelcast.adoc[Hazelcast Support] for more information.
8283
[[x6.5-jdbc-changes]]
8384
== JDBC Support
8485

85-
The `BeanPropertySqlParameterSourceFactory` uses now internally the `MapSqlParameterSource` if provided input is a `Map`.
86-
Also, `JdbcMessageHandler` exposes a `usePayloadAsParameterSource` flag to allow to deal with parameter source only against message payload.
86+
The `BeanPropertySqlParameterSourceFactory` now internally uses the `MapSqlParameterSource` if provided input is a `Map`.
87+
Also, `JdbcMessageHandler` exposes a `usePayloadAsParameterSource` flag to allow working with parameter source only against message payload.
8788
That's where the mentioned `MapSqlParameterSource` comes useful for request messages with map payloads.
8889
See xref:jdbc.adoc[JDBC Support] for more information.
8990

src/reference/antora/modules/ROOT/pages/gateway.adoc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -720,7 +720,7 @@ where such a gateway can be used in some service which deals with the `Flux` of
720720
@Autowired
721721
TestGateway testGateway;
722722
723-
public void hadnleFlux() {
723+
public void handleFlux() {
724724
Flux.just("1", "2", "3", "4", "5")
725725
.map(Integer::parseInt)
726726
.flatMap(this.testGateway::multiply)

0 commit comments

Comments
 (0)