Hi, I'm using wicket-annotations and I've added:
newAnnotatedMountScanner().scanPackage("com.foo.web.pages").mount(this); in my Application class. My page classes all have: @MountPath(value ="summary") However, I want to adjust the pages to not use query parameters like &account=5 and use / like account/5 instead. Is there a way to set this across the app, just like scanPackage, or do I have to set this on each page in my application? I'm using latest Wicket 6. Thanks, Jason