If I send this form to Micronaut with method='GET' then I can extract param1 as a list of two values ... aaa and bbb
<form action='/test/post' method='GET' >
<input type='hidden' name='param1' value = 'aaa'/>
<input type='hidden' name='param1' value = 'bbb'/>
<input type='submit' value='Post'/>
</form>
If however I post it and use the method(@Body Map params) and
consumes=MediaType.APPLICATION_FORM_URLENCODED
on the server side only the last value ('bbb') is seen. The same is true if I encode with multipart/form-data instead.
Is this a bug or a feature of Micronaut 1.0.0 ?