"/*" will match zero or more characters. I want to serve request if there is a one or more characters proceeding the "/" character.

Note: I am using Guice's Servlet Module to configure the request.

Thanks!

link|improve this question

This is not regex. – Amir Raminfar Sep 16 '11 at 16:43
I don't think "proceeding" is the word you want. Do you mean "following"? "Preceding"? Trying to understand your question. – Justin Morgan Sep 16 '11 at 18:39
feedback

2 Answers

up vote 1 down vote accepted

I think you can just do this, assuming you mean that you want to matching anything with a / and 1 or more characters after it (so /foo and /a but not /).

serveRegex("/.+")
link|improve this answer
feedback

in general regex:

/+

dont know if it works here tough ..?

http://code.google.com/p/google-guice/wiki/ServletRegexKeyMapping

link|improve this answer
This will only match a string of / characters. – Justin Morgan Sep 16 '11 at 18:41
well, then you probably have to add an . like mentioned by Colin or (.) like in the link stated (before the +-sign) – definitely undefinable Sep 16 '11 at 19:11
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.