ninja
ninja copied to clipboard
Reverse routing with multiple regex parameters
Hi,
While routing with multiple non-regex parameters works as expected, reverse routing the following route:
router.GET().route("/u{userId: [0-9]*}/entries/{entryTitle}").with(EntryController.class, "display");
with params userId=1, entryTitle="title" produces:
"/u1?entryTitle=title"