I am using Wicket 1.5.3 and in the extended WebApplication class I am registering home page, HomePage.java
for pretty URL as:
mountPage('home', HomePage.class);
The result is a URL: http://localhost:8080/MyApplication/app/home?1
From where the "?1" came and how can I remove it?
If I want that the URL would be http://localhost:8080/MyApplication/app/home, then what should I do?
Thanks in advance.