spring-framework/spring-webmvc
Sébastien Deleuze f06cf21341 Support Kotlin parameter default values in handler methods
This commit adds support for Kotlin parameter default values
in handler methods. It allows to write:
@RequestParam value: String = "default"
as an alternative to:
@RequestParam(defaultValue = "default") value: String

Both Spring MVC and WebFlux are supported, including on
suspending functions.

Closes gh-21139
2023-06-22 16:08:48 +02:00
..
src Support Kotlin parameter default values in handler methods 2023-06-22 16:08:48 +02:00
spring-webmvc.gradle Add method validation to Spring MVC 2023-06-12 11:37:55 +01:00