Java Doc for PathMatchingResourcePatternResolver.java in  » J2EE » spring-framework-2.0.6 » org » springframework » core » io » support » Java Source Code / Java DocumentationJava Source Code and Java Documentation

Java Source Code / Java Documentation
1. 6.0 JDK Core
2. 6.0 JDK Modules
3. 6.0 JDK Modules com.sun
4. 6.0 JDK Modules com.sun.java
5. 6.0 JDK Modules sun
6. 6.0 JDK Platform
7. Ajax
8. Apache Harmony Java SE
9. Aspect oriented
10. Authentication Authorization
11. Blogger System
12. Build
13. Byte Code
14. Cache
15. Chart
16. Chat
17. Code Analyzer
18. Collaboration
19. Content Management System
20. Database Client
21. Database DBMS
22. Database JDBC Connection Pool
23. Database ORM
24. Development
25. EJB Server geronimo
26. EJB Server GlassFish
27. EJB Server JBoss 4.2.1
28. EJB Server resin 3.1.5
29. ERP CRM Financial
30. ESB
31. Forum
32. GIS
33. Graphic Library
34. Groupware
35. HTML Parser
36. IDE
37. IDE Eclipse
38. IDE Netbeans
39. Installer
40. Internationalization Localization
41. Inversion of Control
42. Issue Tracking
43. J2EE
44. JBoss
45. JMS
46. JMX
47. Library
48. Mail Clients
49. Net
50. Parser
51. PDF
52. Portal
53. Profiler
54. Project Management
55. Report
56. RSS RDF
57. Rule Engine
58. Science
59. Scripting
60. Search Engine
61. Security
62. Sevlet Container
63. Source Control
64. Swing Library
65. Template Engine
66. Test Coverage
67. Testing
68. UML
69. Web Crawler
70. Web Framework
71. Web Mail
72. Web Server
73. Web Services
74. Web Services apache cxf 2.0.1
75. Web Services AXIS2
76. Wiki Engine
77. Workflow Engines
78. XML
79. XML UI
Java
Java Tutorial
Java Open Source
Jar File Download
Java Articles
Java Products
Java by API
Photoshop Tutorials
Maya Tutorials
Flash Tutorials
3ds-Max Tutorials
Illustrator Tutorials
GIMP Tutorials
C# / C Sharp
C# / CSharp Tutorial
C# / CSharp Open Source
ASP.Net
ASP.NET Tutorial
JavaScript DHTML
JavaScript Tutorial
JavaScript Reference
HTML / CSS
HTML CSS Reference
C / ANSI-C
C Tutorial
C++
C++ Tutorial
Ruby
PHP
Python
Python Tutorial
Python Open Source
SQL Server / T-SQL
SQL Server / T-SQL Tutorial
Oracle PL / SQL
Oracle PL/SQL Tutorial
PostgreSQL
SQL / MySQL
MySQL Tutorial
VB.Net
VB.Net Tutorial
Flash / Flex / ActionScript
VBA / Excel / Access / Word
XML
XML Tutorial
Microsoft Office PowerPoint 2007 Tutorial
Microsoft Office Excel 2007 Tutorial
Microsoft Office Word 2007 Tutorial
Java Source Code / Java Documentation » J2EE » spring framework 2.0.6 » org.springframework.core.io.support 
Source Cross Reference  Class Diagram Java Document (Java Doc) 


java.lang.Object
   org.springframework.core.io.support.PathMatchingResourcePatternResolver

All known Subclasses:   org.springframework.web.portlet.context.PortletContextResourcePatternResolver,  org.springframework.web.context.support.ServletContextResourcePatternResolver,
PathMatchingResourcePatternResolver
public class PathMatchingResourcePatternResolver implements ResourcePatternResolver(Code)
A ResourcePatternResolver implementation that is able to resolve a specified resource location path into one or more matching Resources. The source path may be a simple path which has a one-to-one mapping to a target org.springframework.core.io.Resource , or alternatively may contain the special "classpath*:" prefix and/or internal Ant-style regular expressions (matched using Spring's org.springframework.util.AntPathMatcher utility). Both of the latter are effectively wildcards.

No Wildcards:

In the simple case, if the specified location path does not start with the "classpath*:" prefix, and does not contain a PathMatcher pattern, this resolver will simply return a single resource via a getResource() call on the underlying ResourceLoader. Examples are real URLs such as "file:C:/context.xml", pseudo-URLs such as "classpath:/context.xml", and simple unprefixed paths such as "/WEB-INF/context.xml". The latter will resolve in a fashion specific to the underlaying ResourceLoader (e.g. ServletContextResource for a WebApplicationContext).

Ant-style Patterns:

When the path location contains an Ant-style pattern, e.g.:

 /WEB-INF/*-context.xml
 com/mycompany/**/applicationContext.xml
 file:C:/some/path/*-context.xml
 classpath:com/mycompany/**/applicationContext.xml
the resolver follows a more complex but defined procedure to try to resolve the wildcard. It produces a Resource for the path up to the last non-wildcard segment and obtains a URL from it. If this URL is not a "jar:" URL or container-specific variant (e.g. "zip:" in WebLogic, "wsjar" in WebSphere", etc.), then a java.io.File is obtained from it, and used to resolve the wildcard by walking the filesystem. In the case of a jar URL, the resolver either gets a java.net.JarURLConnection from it, or manually parse the jar URL, and then traverse the contents of the jar file, to resolve the wildcards.

Implications on portability:

If the specified path is already a file URL (either explicitly, or implicitly because the base ResourceLoader is a filesystem one, then wildcarding is guaranteed to work in a completely poratable fashion.

If the specified path is a classpath location, then the resolver must obtain the last non-wildcard path segment URL via a Classloader.getResource() call. Since this is just a node of the path (not the file at the end) it is actually undefined (in the ClassLoader Javadocs) exactly what sort of a URL is returned in this case. In practice, it is usually a java.io.File representing the directory, where the classpath resource resolves to a filesystem location, or a jar URL of some sort, where the classpath resource resolves to a jar location. Still, there is a portability concern on this operation.

If a jar URL is obtained for the last non-wildcard segment, the resolver must be able to get a java.net.JarURLConnection from it, or manually parse the jar URL, to be able to walk the contents of the jar, and resolve the wildcard. This will work in most environments, but will fail in others, and it is strongly recommended that the wildcard resolution of resources coming from jars be thoroughly tested in your specific environment before you rely on it.

classpath*: Prefix:

There is special support for retrieving multiple class path resources with the same name, via the "classpath*:" prefix. For example, "classpath*:META-INF/beans.xml" will find all "beans.xml" files in the class path, be it in "classes" directories or in JAR files. This is particularly useful for autodetecting config files of the same name at the same location within each jar file. Internally, this happens via a ClassLoader.getResources() call, and is completely portable.

The "classpath*:" prefix can also be combined with a PathMatcher pattern in the rest of the location path, for example "classpath*:META-INF/*-beans.xml". In this case, the resolution strategy is fairly simple: a ClassLoader.getResources() call is used on the last non-wildcard path segment to get all the matching resources in the class loader hierarchy, and then off each resource the same PathMatcher resoltion strategy described above is used for the wildcard subpath.

Other notes:

WARNING: Note that "classpath*:" when combined with Ant-style patterns will only work reliably with at least one root directory before the pattern starts, unless the actual target files reside in the file system. This means that a pattern like "classpath*:*.xml" will not retrieve files from the root of jar files but rather only from the root of expanded directories. This originates from a limitation in the JDK's ClassLoader.getResources() method which only returns file system locations for a passed-in empty String (indicating potential roots to search).

WARNING: Ant-style patterns with "classpath:" resources are not guaranteed to find matching resources if the root package to search is available in multiple class path locations. This is because a resource such as

 com/mycompany/package1/service-context.xml
 
may be in only one location, but when a path such as
 classpath:com/mycompany/**/service-context.xml
 
is used to try to resolve it, the resolver will work off the (first) URL returned by getResource("com/mycompany");. If this base package node exists in multiple classloader locations, the actual end resource may not be underneath. Therefore, preferably, use "classpath*:" with the same Ant-style pattern in such a case, which will search all class path locations that contain the root package.
author:
   Juergen Hoeller
author:
   Colin Sampaleanu
since:
   1.0.2
See Also:   PathMatchingResourcePatternResolver.CLASSPATH_ALL_URL_PREFIX
See Also:   org.springframework.util.AntPathMatcher
See Also:   org.springframework.core.io.ResourceLoader.getResource(String)
See Also:   java.lang.ClassLoader.getResources(String)


Field Summary
final protected  Loglogger
    

Constructor Summary
public  PathMatchingResourcePatternResolver()
     Create a new PathMatchingResourcePatternResolver with a DefaultResourceLoader.
public  PathMatchingResourcePatternResolver(ClassLoader classLoader)
     Create a new PathMatchingResourcePatternResolver with a DefaultResourceLoader.
public  PathMatchingResourcePatternResolver(ResourceLoader resourceLoader)
     Create a new PathMatchingResourcePatternResolver.

Method Summary
protected  ResourceconvertClassLoaderURL(URL url)
     Convert the given URL as returned from the ClassLoader into a Resource object.
protected  StringdetermineRootDir(String location)
     Determine the root directory for the given location.
protected  SetdoFindMatchingFileSystemResources(File rootDir, String subPattern)
     Find all resources in the file system that match the given location pattern via the Ant-style PathMatcher.
protected  SetdoFindPathMatchingFileResources(Resource rootDirResource, String subPattern)
     Find all resources in the file system that match the given location pattern via the Ant-style PathMatcher.
protected  SetdoFindPathMatchingJarResources(Resource rootDirResource, String subPattern)
     Find all resources in jar files that match the given location pattern via the Ant-style PathMatcher.
protected  voiddoRetrieveMatchingFiles(String fullPattern, File dir, Set result)
     Recursively retrieve files that match the given pattern, adding them to the given result list.
protected  Resource[]findAllClassPathResources(String location)
     Find all class location resources with the given location via the ClassLoader.
protected  Resource[]findPathMatchingResources(String locationPattern)
     Find all resources that match the given location pattern via the Ant-style PathMatcher.
public  ClassLoadergetClassLoader()
     Return the ClassLoader that this pattern resolver works with (never null).
public  PathMatchergetPathMatcher()
     Return the PathMatcher that this resource pattern resolver uses.
public  ResourcegetResource(String location)
    
public  ResourceLoadergetResourceLoader()
     Return the ResourceLoader that this pattern resolver works with.
public  Resource[]getResources(String locationPattern)
    
protected  booleanisJarResource(Resource resource)
     Return whether the given resource handle indicates a jar resource that the doFindPathMatchingJarResources method can handle.
protected  SetretrieveMatchingFiles(File rootDir, String pattern)
     Retrieve files that match the given path pattern, checking the given directory and its subdirectories.
public  voidsetPathMatcher(PathMatcher pathMatcher)
     Set the PathMatcher implementation to use for this resource pattern resolver.

Field Detail
logger
final protected Log logger(Code)




Constructor Detail
PathMatchingResourcePatternResolver
public PathMatchingResourcePatternResolver()(Code)
Create a new PathMatchingResourcePatternResolver with a DefaultResourceLoader.

ClassLoader access will happen via the thread context class loader.
See Also:   org.springframework.core.io.DefaultResourceLoader




PathMatchingResourcePatternResolver
public PathMatchingResourcePatternResolver(ClassLoader classLoader)(Code)
Create a new PathMatchingResourcePatternResolver with a DefaultResourceLoader.
Parameters:
  classLoader - the ClassLoader to load classpath resources with,or null for using the thread context class loader
See Also:   org.springframework.core.io.DefaultResourceLoader



PathMatchingResourcePatternResolver
public PathMatchingResourcePatternResolver(ResourceLoader resourceLoader)(Code)
Create a new PathMatchingResourcePatternResolver.

ClassLoader access will happen via the thread context class loader.
Parameters:
  resourceLoader - the ResourceLoader to load root directories andactual resources with





Method Detail
convertClassLoaderURL
protected Resource convertClassLoaderURL(URL url)(Code)
Convert the given URL as returned from the ClassLoader into a Resource object.

The default implementation simply creates a UrlResource instance.
Parameters:
  url - a URL as returned from the ClassLoader the corresponding Resource object
See Also:   java.lang.ClassLoader.getResources
See Also:   org.springframework.core.io.Resource




determineRootDir
protected String determineRootDir(String location)(Code)
Determine the root directory for the given location.

Used for determining the starting point for file matching, resolving the root directory location to a java.io.File and passing it into retrieveMatchingFiles, with the remainder of the location as pattern.

Will return "/WEB-INF" for the pattern "/WEB-INF/*.xml", for example.
Parameters:
  location - the location to check the part of the location that denotes the root directory
See Also:   PathMatchingResourcePatternResolver.retrieveMatchingFiles




doFindMatchingFileSystemResources
protected Set doFindMatchingFileSystemResources(File rootDir, String subPattern) throws IOException(Code)
Find all resources in the file system that match the given location pattern via the Ant-style PathMatcher.
Parameters:
  rootDir - the root directory in the file system
Parameters:
  subPattern - the sub pattern to match (below the root directory) the Set of matching Resource instances
throws:
  IOException - in case of I/O errors
See Also:   PathMatchingResourcePatternResolver.retrieveMatchingFiles
See Also:   org.springframework.util.PathMatcher



doFindPathMatchingFileResources
protected Set doFindPathMatchingFileResources(Resource rootDirResource, String subPattern) throws IOException(Code)
Find all resources in the file system that match the given location pattern via the Ant-style PathMatcher.
Parameters:
  rootDirResource - the root directory as Resource
Parameters:
  subPattern - the sub pattern to match (below the root directory) the Set of matching Resource instances
throws:
  IOException - in case of I/O errors
See Also:   PathMatchingResourcePatternResolver.retrieveMatchingFiles
See Also:   org.springframework.util.PathMatcher



doFindPathMatchingJarResources
protected Set doFindPathMatchingJarResources(Resource rootDirResource, String subPattern) throws IOException(Code)
Find all resources in jar files that match the given location pattern via the Ant-style PathMatcher.
Parameters:
  rootDirResource - the root directory as Resource
Parameters:
  subPattern - the sub pattern to match (below the root directory) the Set of matching Resource instances
throws:
  IOException - in case of I/O errors
See Also:   java.net.JarURLConnection
See Also:   org.springframework.util.PathMatcher



doRetrieveMatchingFiles
protected void doRetrieveMatchingFiles(String fullPattern, File dir, Set result) throws IOException(Code)
Recursively retrieve files that match the given pattern, adding them to the given result list.
Parameters:
  fullPattern - the pattern to match against,with preprended root directory path
Parameters:
  dir - the current directory
Parameters:
  result - the Set of matching File instances to add to
throws:
  IOException - if directory contents could not be retrieved



findAllClassPathResources
protected Resource[] findAllClassPathResources(String location) throws IOException(Code)
Find all class location resources with the given location via the ClassLoader.
Parameters:
  location - the absolute path within the classpath the result as Resource array
throws:
  IOException - in case of I/O errors
See Also:   java.lang.ClassLoader.getResources
See Also:   PathMatchingResourcePatternResolver.convertClassLoaderURL



findPathMatchingResources
protected Resource[] findPathMatchingResources(String locationPattern) throws IOException(Code)
Find all resources that match the given location pattern via the Ant-style PathMatcher. Supports resources in jar files and zip files and in the file system.
Parameters:
  locationPattern - the location pattern to match the result as Resource array
throws:
  IOException - in case of I/O errors
See Also:   PathMatchingResourcePatternResolver.doFindPathMatchingJarResources
See Also:   PathMatchingResourcePatternResolver.doFindPathMatchingFileResources
See Also:   org.springframework.util.PathMatcher



getClassLoader
public ClassLoader getClassLoader()(Code)
Return the ClassLoader that this pattern resolver works with (never null).



getPathMatcher
public PathMatcher getPathMatcher()(Code)
Return the PathMatcher that this resource pattern resolver uses.



getResource
public Resource getResource(String location)(Code)



getResourceLoader
public ResourceLoader getResourceLoader()(Code)
Return the ResourceLoader that this pattern resolver works with.



getResources
public Resource[] getResources(String locationPattern) throws IOException(Code)



isJarResource
protected boolean isJarResource(Resource resource) throws IOException(Code)
Return whether the given resource handle indicates a jar resource that the doFindPathMatchingJarResources method can handle.

The default implementation checks against the URL protocols "jar", "zip" and "wsjar" (the latter are used by BEA WebLogic Server and IBM WebSphere, respectively, but can be treated like jar files).
Parameters:
  resource - the resource handle to check(usually the root directory to start path matching from)
See Also:   PathMatchingResourcePatternResolver.doFindPathMatchingJarResources
See Also:   org.springframework.util.ResourceUtils.isJarURL




retrieveMatchingFiles
protected Set retrieveMatchingFiles(File rootDir, String pattern) throws IOException(Code)
Retrieve files that match the given path pattern, checking the given directory and its subdirectories.
Parameters:
  rootDir - the directory to start from
Parameters:
  pattern - the pattern to match against,relative to the root directory the Set of matching File instances
throws:
  IOException - if directory contents could not be retrieved



setPathMatcher
public void setPathMatcher(PathMatcher pathMatcher)(Code)
Set the PathMatcher implementation to use for this resource pattern resolver. Default is AntPathMatcher.
See Also:   org.springframework.util.AntPathMatcher



Methods inherited from java.lang.Object
native protected Object clone() throws CloneNotSupportedException(Code)(Java Doc)
public boolean equals(Object obj)(Code)(Java Doc)
protected void finalize() throws Throwable(Code)(Java Doc)
final native public Class getClass()(Code)(Java Doc)
native public int hashCode()(Code)(Java Doc)
final native public void notify()(Code)(Java Doc)
final native public void notifyAll()(Code)(Java Doc)
public String toString()(Code)(Java Doc)
final native public void wait(long timeout) throws InterruptedException(Code)(Java Doc)
final public void wait(long timeout, int nanos) throws InterruptedException(Code)(Java Doc)
final public void wait() throws InterruptedException(Code)(Java Doc)

www.java2java.com | Contact Us
Copyright 2009 - 12 Demo Source and Support. All rights reserved.
All other trademarks are property of their respective owners.