| org.springframework.core.io.support | Support classes for Spring's resource abstraction. |
| ContextResource | Extended interface for a resource that is loaded from an enclosing 'context', e.g. | code | html |
| InputStreamSource | Simple interface for objects that are sources for an InputStream . | code | html |
| Resource | Interface for a resource descriptor that abstracts from the actual type of underlying resource, such as a file or class path resource. | code | html |
| ResourceLoader | Strategy interface for loading resources (e.. | code | html |
| AbstractResource | Convenience base class for Resource implementations, pre-implementing typical behavior. | code | html |
| AbstractPathResolvingPropertyEditor | Abstract base class for PropertyEditors that need to resolve placeholders in paths. | code | html |
| ByteArrayResource | Resource implementation for a given byte array. | code | html |
| ClassPathResource | Resource implementation for class path resources. | code | html |
| DefaultResourceLoader | Default implementation of the ResourceLoader interface. | code | html |
| DefaultResourceLoader.ClassPathContextResource | ClassPathResource that explicitly expresses a context-relative path through implementing the ContextResource interface. | code | html |
| DescriptiveResource | Simple Resource implementation that holds a resource description but does not point to an actually readable resource. | code | html |
| FileSystemResource | Resource implementation for java.io.File handles. |
code | html |
| FileSystemResourceLoader | ResourceLoader implementation that resolves plain paths as file system resources rather than as class path resources (the latter is DefaultResourceLoader 's default strategy). | code | html |
| FileSystemResourceLoader.FileSystemContextResource | FileSystemResource that explicitly expresses a context-relative path through implementing the ContextResource interface. | code | html |
| InputStreamResource | Resource implementation for a given InputStream. | code | html |
| ResourceEditor | Editor for Resource
descriptors, to automatically convert String locations
e.g. |
code | html |
| UrlResource | Resource implementation for java.net.URL locators. |
code | html |