How to access url GET parameters in Struts2
- by Emanuel
I have the following code:
<a href="www.localhost/Project/Show.action?test=abc"> Test </a>
And I want when I click on it to show the "test" parameter in the next page.
How can be done in Struts2?
Thanks.