Using Grails 1.3.3, when requesting url link:
/myapp/mycontroller/myaction?p1=v1&p2=v2&p1=v1
then params injected value into Grails controller will contain :
assert params.p1== ['v1','v1']
It would have been logical to me that params.p1
equals to 'v1'
, no?
In any case, is there any way to change this behavior?
Thank you.