So i have a createLink in gsp file like this:
${createLink(params:[warehouseId:warehouse?.id, itemId:itemWarehouseInstance?.item?.id], uri: '/item/show/' + itemWarehouseInstance?.item?.id)}
and in localhost version it works perfectly and produces following link:
.../item/show/2?warehouseId=2&itemId=2
BUT when i create .war and deploy it on server it produces following link:
.../item/show/4?warehouseId=1
which means it didn't add all arguments to the URI. I am still new to the grails so it might not be big issue, but i have no idea what could have went wrong. If you need any information, just ask.
Thanks in advance!