Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
"/*"将匹配零个或多个字符。如果在“/”字符前有一个或多个字符,我想提供请求。
"/*"
注意:我正在使用 Guice 的 Servlet 模块来配置请求。
谢谢!
我认为你可以这样做,假设你的意思是你想要匹配任何带有 a/和 1 个或更多字符的东西(so/foo和/abut not /)。
/
/foo
/a
serveRegex("/.+")
一般的正则表达式:
/+
不知道它在这里是否有效..?
http://code.google.com/p/google-guice/wiki/ServletRegexKeyMapping