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: src/docs/asciidoc/languages/kotlin.adoc
+5-3Lines changed: 5 additions & 3 deletions
Original file line number
Diff line number
Diff line change
@@ -131,8 +131,8 @@ since the later requires a reference to the outer class.
131
131
132
132
The Spring Framework also takes advantage of https://kotlinlang.org/docs/reference/null-safety.html[Kotlin null-safety]
133
133
to determine if a HTTP parameter is required without having to explicitly
134
-
define the `required` attribute. That means `@RequestParam name: String?` is treated
135
-
as not required and, conversely, `@RequestParam name: String` is treated as being required.
134
+
define the `required` attribute. That means `@RequestParam name: String?` is treated
135
+
as not required and, conversely, `@RequestParam name: String` is treated as being required.
136
136
This feature is also supported on the Spring Messaging `@Header` annotation.
137
137
138
138
In a similar fashion, Spring bean injection with `@Autowired`, `@Bean`, or `@Inject` uses
@@ -417,6 +417,8 @@ dependencies {
417
417
}
418
418
----
419
419
420
+
Version `1.3.0` and above are supported.
421
+
420
422
=== How Reactive translates to Coroutines?
421
423
422
424
For return values, the translation from Reactive to Coroutines APIs is the following:
@@ -541,7 +543,7 @@ class CoroutinesViewController(banner: Banner) {
541
543
542
544
=== WebFlux.fn
543
545
544
-
Here is an example of Coroutines router definined via the {doc-root}/spring-framework/docs/{spring-version}/kdoc-api/spring-framework/org.springframework.web.reactive.function.server/co-router.html[coRouter { }] DSL and related handlers.
546
+
Here is an example of Coroutines router defined via the {doc-root}/spring-framework/docs/{spring-version}/kdoc-api/spring-framework/org.springframework.web.reactive.function.server/co-router.html[coRouter { }] DSL and related handlers.
0 commit comments