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.
我对 URL 模式/和/**wrt感到困惑AntPAthMatcher。
/
/**
AntPAthMatcher
我知道这/**是一个可以匹配所有 URL 的通用模式,但我不确定/会匹配什么。
我试过寻找差异,但没有帮助。
/**将匹配路径中任意数量(0 个或更多)的级别,例如。它会同时匹配/file和/some/path/file。
/file
/some/path/file
单个星号/*仅匹配 0 个或多个字符(不是路径级别),因此它会匹配/file但不 /some/path/file匹配.
/*
单个斜杠/只会匹配根路径。