Hi all,

What would be the best approach to attach a handler to search urls (i.e. urls of
the form '/accounts?balance_less_than=10000')?

My first attempt was to attach the handler to "/accounts\\?[.]+", but this
doesn't work as the pattern matching is done on request.getRelativePart()
('/accounts', in this case), so the handler is never called.

Is my only option is to attach the handler to "/accounts[.]+", and to analyse
the request parameters in the handleGet method?


Thanks,

-vincent.

Reply via email to