Anyone knows why `@RequestParam("size", required =...
# spring
c
Anyone knows why
@RequestParam("size", required = false) size: Int = 5
does not give
size
a default value?
c
This is a known problem with Spring, to have default value here you have to specify it in the
@RequestParam
annotation itself.