Merge branch '5.1.x'

This commit is contained in:
Sebastien Deleuze 2019-02-17 10:39:15 +01:00
commit 175c27657e
2 changed files with 16 additions and 3 deletions

View File

@ -26,7 +26,7 @@ import java.net.URI
/**
* Allow to create easily a `RouterFunction<ServerResponse>` from a Kotlin router DSL based
* on the same building blocks than the Java one ([RouterFunction], [RequestPredicate],
* on the same building blocks as the Java one ([RouterFunction], [RequestPredicate],
* [HandlerFunction]).
*
* Example:
@ -554,4 +554,4 @@ open class RouterFunctionDsl(private val init: RouterFunctionDsl.() -> Unit) : (
}
}
}
}

View File

@ -324,11 +324,14 @@ refactoring support in a supported IDE, as the following example shows:
"""
----
NOTE: Kotlin Script Templates are not compatible yet with Spring Boot fatjar mechanism, see related
https://youtrack.jetbrains.com/issue/KT-21443[KT-21443] and https://youtrack.jetbrains.com/issue/KT-27956[KT-27956]
issues.
See the https://github.com/sdeleuze/kotlin-script-templating[kotlin-script-templating] example
project for more details.
[[kotlin-spring-projects-in-kotlin]]
== Spring Projects in Kotlin
@ -497,6 +500,16 @@ and https://github.com/spring-projects/spring-boot/issues/1254[`@ConfigurationPr
for more details.
=== Checked Exceptions
Java and https://kotlinlang.org/docs/reference/exceptions.html[Kotlin exception handling] are pretty close, with the main
difference being that Kotlin treats all exceptions as unchecked exceptions. However, when using proxied objects
(for example classes or methods annotated with `@Transactional`), checked exceptions thrown will be wrapped by default in
an `UndeclaredThrowableException`.
To get the original exception thrown like in Java, methods should be annotated with https://kotlinlang.org/api/latest/jvm/stdlib/kotlin.jvm/-throws/index.html[`@Throws`]
to specify explicitly the checked exceptions thrown (for example `@Throws(IOException::class)`).
=== Annotation Array Attributes