In my 1.5-M3 app's init, I've got:

        // this part works fine, just wanted to show where the xxxx comes
from below...
        getRootRequestMapperAsCompound().add(customHomeMapper);

        getRootRequestMapperAsCompound().add(
                new MountedMapper("/statement", StatementPage.class));

and my StatementPage URLs look like this:

http://localhost:8080/xxxx/statement?id=3&p2=75

I need them to look like this:

http://localhost:8080/xxxx/statement/id/3/p2/75

Looks like HybridURLCodingStrategy is out and PageParametersEncoder is it's
replacement... but no subclasses that do what I need.

Is there a 1.5 equivalent before I go write one, or is there another way?

BTW, the ability to have the custom home component mapper is the reason I'm
migrating - I'm so happy to have that feature!!
I just need a bit of help getting this into final form.

Thanks,
-- Jim.

Reply via email to