I have created a web page in wicket and mounted it. The url looks like so:
http://localhost:8080/app/page?5
Is there an option to remove the number at the end which is still incrementing?
I also mount this page: mountPage("page", Page.class);
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
This number appears because your page is stateful. If you want to avoid this you’ll need to create stateless pages.
Read this wiki entry for more details:
https://cwiki.apache.org/WICKET/stateless-pages.html