📄 pathmatchingresourcepatternresolver.java
字号:
String path = location;
if (path.startsWith("/")) {
path = path.substring(1);
}
ClassLoader cl = this.classLoader;
if (cl == null) {
// no class loader specified -> use thread context class loader
cl = Thread.currentThread().getContextClassLoader();
}
Enumeration resourceUrls = cl.getResources(path);
List result = new ArrayList();
while (resourceUrls.hasMoreElements()) {
URL url = (URL) resourceUrls.nextElement();
result.add(new UrlResource(url));
}
return (Resource[]) result.toArray(new Resource[result.size()]);
}
/**
* Find all resources that match the given location pattern via the
* Ant-style PathMatcher utility. Supports resources in jar files
* and in the file system.
* @param locationPattern the location pattern to match
* @return the result as Resource array
* @throws IOException in case of I/O errors
* @see #doFindPathMatchingJarResources
* @see #doFindPathMatchingFileResources
* @see org.springframework.util.PathMatcher
*/
protected Resource[] findPathMatchingResources(String locationPattern) throws IOException {
String rootDirPath = determineRootDir(locationPattern);
String subPattern = locationPattern.substring(rootDirPath.length());
Resource[] rootDirResources = getResources(rootDirPath);
List result = new ArrayList();
for (int i = 0; i < rootDirResources.length; i++) {
Resource rootDirResource = rootDirResources[i];
if ("jar".equals(rootDirResource.getURL().getProtocol())) {
result.addAll(doFindPathMatchingJarResources(rootDirResource, subPattern));
}
else {
result.addAll(doFindPathMatchingFileResources(rootDirResource, subPattern));
}
}
if (logger.isInfoEnabled()) {
logger.info("Resolved location pattern [" + locationPattern + "] to resources " + result);
}
return (Resource[]) result.toArray(new Resource[result.size()]);
}
/**
* Determine the root directory for the given location.
* <p>Used for determining the starting point for file matching,
* resolving the root directory location to a java.io.File and
* passing it into <code>retrieveMatchingFiles</code>, with the
* remainder of the location as pattern.
* <p>Will return "/WEB-INF" for the pattern "/WEB-INF/*.xml",
* for example.
* @param location the location to checkn
* @return the part of the location that denotes the root directory
* @see #retrieveMatchingFiles
*/
protected String determineRootDir(String location) {
int patternStart = location.length();
int prefixEnd = location.indexOf(":");
int asteriskIndex = location.indexOf('*', prefixEnd);
int questionMarkIndex = location.indexOf('?', prefixEnd);
if (asteriskIndex != -1 || questionMarkIndex != -1) {
patternStart = (asteriskIndex > questionMarkIndex ? asteriskIndex : questionMarkIndex);
}
int rootDirEnd = location.lastIndexOf('/', patternStart);
if (rootDirEnd == -1) {
rootDirEnd = location.lastIndexOf(":", patternStart) + 1;
}
return (rootDirEnd != -1 ? location.substring(0, rootDirEnd) : "");
}
/**
* Find all resources in jar files that match the given location pattern
* via the Ant-style PathMatcher utility.
* @param rootDirResource the root directory as Resource
* @param subPattern the sub pattern to match (below the root directory)
* @return the List of matching Resource instances
* @throws IOException in case of I/O errors
* @see java.net.JarURLConnection
* @see org.springframework.util.PathMatcher
*/
protected List doFindPathMatchingJarResources(Resource rootDirResource, String subPattern) throws IOException {
URLConnection con = rootDirResource.getURL().openConnection();
if (!(con instanceof JarURLConnection)) {
throw new IOException("Cannot perform jar file search for [" + rootDirResource +
"]: did not return java.net.JarURLConnection; connection was [" + con + "]");
}
JarURLConnection jarCon = (JarURLConnection) con;
JarFile jarFile = jarCon.getJarFile();
URL jarFileUrl = jarCon.getJarFileURL();
if (logger.isDebugEnabled()) {
logger.debug("Looking for matching resources in jar file [" + jarFileUrl + "]");
}
String rootEntryPath = jarCon.getJarEntry().getName();
String jarFileUrlPrefix = "jar:" + jarFileUrl.toExternalForm() + "!/";
List result = new LinkedList();
for (Enumeration entries = jarFile.entries(); entries.hasMoreElements();) {
JarEntry entry = (JarEntry) entries.nextElement();
String entryPath = entry.getName();
if (entryPath.startsWith(rootEntryPath) &&
PathMatcher.match(subPattern, entryPath.substring(rootEntryPath.length()))) {
result.add(new UrlResource(new URL(jarFileUrlPrefix + entryPath)));
}
}
return result;
}
/**
* Find all resources in the file system that match the given location pattern
* via the Ant-style PathMatcher utility.
* @param rootDirResource the root directory as Resource
* @param subPattern the sub pattern to match (below the root directory)
* @return the List of matching Resource instances
* @throws IOException in case of I/O errors
* @see #retrieveMatchingFiles
* @see org.springframework.util.PathMatcher
*/
protected List doFindPathMatchingFileResources(Resource rootDirResource, String subPattern) throws IOException {
File rootDir = rootDirResource.getFile().getAbsoluteFile();
if (logger.isDebugEnabled()) {
logger.debug("Looking for matching resources in directory tree [" + rootDir.getPath() + "]");
}
List matchingFiles = retrieveMatchingFiles(rootDir, subPattern);
List result = new ArrayList(matchingFiles.size());
for (Iterator it = matchingFiles.iterator(); it.hasNext();) {
File file = (File) it.next();
result.add(new FileSystemResource(file));
}
return result;
}
/**
* Retrieve files that match the given path pattern,
* checking the given directory and its subdirectories.
* @param rootDir the directory to start from
* @param pattern the pattern to match against,
* relative to the root directory
* @return the List of matching File instances
* @throws IOException if directory contents could not be retrieved
*/
protected List retrieveMatchingFiles(File rootDir, String pattern) throws IOException {
if (!rootDir.isDirectory()) {
throw new IllegalArgumentException("'rootDir' parameter [" + rootDir + "] does not denote a directory");
}
String fullPattern = StringUtils.replace(rootDir.getAbsolutePath(), File.separator, "/");
if (!pattern.startsWith("/")) {
fullPattern += "/";
}
fullPattern = fullPattern + StringUtils.replace(pattern, File.separator, "/");
List result = new LinkedList();
doRetrieveMatchingFiles(fullPattern, rootDir, result);
return result;
}
/**
* Recursively retrieve files that match the given pattern,
* adding them to the given result list.
* @param fullPattern the pattern to match against,
* with preprended root directory path
* @param dir the current directory
* @param result the list of matching files to add to
* @throws IOException if directory contents could not be retrieved
*/
protected void doRetrieveMatchingFiles(String fullPattern, File dir, List result) throws IOException {
if (logger.isDebugEnabled()) {
logger.debug("Searching directory [" + dir.getAbsolutePath() +
"] for files matching pattern [" + fullPattern + "]");
}
File[] dirContents = dir.listFiles();
if (dirContents == null) {
throw new IOException("Could not retrieve contents of directory [" + dir.getAbsolutePath() + "]");
}
boolean dirDepthNotFixed = (fullPattern.indexOf("**") != -1);
for (int i = 0; i < dirContents.length; i++) {
String currPath = StringUtils.replace(dirContents[i].getAbsolutePath(), File.separator, "/");
if (dirContents[i].isDirectory() &&
(dirDepthNotFixed ||
StringUtils.countOccurrencesOf(currPath, "/") < StringUtils.countOccurrencesOf(fullPattern, "/"))) {
doRetrieveMatchingFiles(fullPattern, dirContents[i], result);
}
if (PathMatcher.match(fullPattern, currPath)) {
result.add(dirContents[i]);
}
}
}
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -