`fun get(@RequestParam limit: Int = 20)` looks mor...
# spring
d
fun get(@RequestParam limit: Int = 20)
looks more natural to me than
fun get(@RequestParam(defaultValue = "20") limit: Int)
. The latter is also not really type-safe, since
defaultValue
is always a String.