Hello,

I am new to Spring. I want to ask a question about transferring an object from a page to another. I don't want to do this by a form. I have some links like <a href="abc.htm?objectId=14">. In this page I have some objects mapped. When I click the link abc.htm?objectId=14 I want to transfer an object to that page. I don't have a form here. How can I do this transfer except GET method. If there is no way of doing that with Spring, what is the easiest and safest way of serializing an object into a string and send it with GET method to another page.

Thanks for your answers.

Faruk