E
Size: a a a
AV
AV
WT
WT
I
L
Б
ch
V
ch
QH
ДЧ
QH
new UrlTemplate2<String, Int>("/whatever/{category}/{id}")
…
template.link("qwe", 123) => "/whatever/qwe/123"
…
httpServer.handle(template, (cat, id) -> {})
VP
@RequestMapping("/whatever/{category}/{id}")
void foo(String category, int id) { ... }