类 AbstractResource
java.lang.Object
com.alibaba.nacos.common.packagescan.resource.AbstractResource
- 所有已实现的接口:
InputStreamSource,Resource
- 直接已知子类:
AbstractFileResolvingResource,ByteArrayResource,FileSystemResource,InputStreamResource,PathResource,VfsResource
Copy from https://github.com/spring-projects/spring-framework.git, with less modifications
Convenience base class for
Resource implementations,
pre-implementing typical behavior.
The "exists" method will check whether a File or InputStream can be opened; "isOpen" will always return false; "getURL" and "getFile" throw an exception; and "toString" will return the description.
- 从以下版本开始:
- 28.12.2003
- 作者:
- Juergen Hoeller, Sam Brannen
-
构造器概要
构造器 -
方法概要
修饰符和类型方法说明longThis method reads the entire InputStream to determine the content length.createRelative(String relativePath) This implementation throws a FileNotFoundException, assuming that relative resources cannot be created for this resource.booleanThis implementation compares description strings.booleanexists()This implementation checks whether a File can be opened, falling back to whether an InputStream can be opened.getFile()This implementation throws a FileNotFoundException, assuming that the resource cannot be resolved to an absolute file path.protected FileDetermine the File to use for timestamp checking.This implementation always returnsnull, assuming that this resource type does not have a filename.getUri()This implementation builds a URI based on the URL returned bygetUrl().getUrl()This implementation throws a FileNotFoundException, assuming that the resource cannot be resolved to a URL.inthashCode()This implementation returns the description's hash code.booleanisFile()This implementation always returnsfalse.booleanisOpen()This implementation always returnsfalse.booleanThis implementation always returnstruefor a resource thatexists(revised as of 5.1).longThis implementation checks the timestamp of the underlying File, if available.This implementation returnsChannels.newChannel(InputStream)with the result ofInputStreamSource.getInputStream().toString()This implementation returns the description of this resource.从接口继承的方法 com.alibaba.nacos.common.packagescan.resource.InputStreamSource
getInputStream从接口继承的方法 com.alibaba.nacos.common.packagescan.resource.Resource
getDescription
-
构造器详细资料
-
AbstractResource
public AbstractResource()
-
-
方法详细资料
-
exists
public boolean exists()This implementation checks whether a File can be opened, falling back to whether an InputStream can be opened. This will cover both directories and content resources. -
isReadable
public boolean isReadable()This implementation always returnstruefor a resource thatexists(revised as of 5.1).- 指定者:
isReadable在接口中Resource- 另请参阅:
-
isOpen
public boolean isOpen()This implementation always returnsfalse. -
isFile
public boolean isFile()This implementation always returnsfalse. -
getUrl
This implementation throws a FileNotFoundException, assuming that the resource cannot be resolved to a URL.- 指定者:
getUrl在接口中Resource- 抛出:
IOException- if the resource cannot be resolved as URL, i.e. if the resource is not available as descriptor
-
getUri
This implementation builds a URI based on the URL returned bygetUrl().- 指定者:
getUri在接口中Resource- 抛出:
IOException- if the resource cannot be resolved as URI, i.e. if the resource is not available as descriptor
-
getFile
This implementation throws a FileNotFoundException, assuming that the resource cannot be resolved to an absolute file path.- 指定者:
getFile在接口中Resource- 抛出:
FileNotFoundException- if the resource cannot be resolved as absolute file path, i.e. if the resource is not available in a file systemIOException- in case of general resolution/reading failures- 另请参阅:
-
readableChannel
This implementation returnsChannels.newChannel(InputStream)with the result ofInputStreamSource.getInputStream(). This is the same as inResource's corresponding default method but mirrored here for efficient JVM-level dispatching in a class hierarchy.- 指定者:
readableChannel在接口中Resource- 返回:
- the byte channel for the underlying resource (must not be
null) - 抛出:
FileNotFoundException- if the underlying resource doesn't existIOException- if the content channel could not be opened- 另请参阅:
-
contentLength
This method reads the entire InputStream to determine the content length. For a custom sub-class ofInputStreamResource, we strongly recommend overriding this method with a more optimal implementation, e.g. checking File length, or possibly simply returning -1 if the stream can only be read once.- 指定者:
contentLength在接口中Resource- 抛出:
IOException- if the resource cannot be resolved (in the file system or as some other known physical resource type)- 另请参阅:
-
lastModified
This implementation checks the timestamp of the underlying File, if available.- 指定者:
lastModified在接口中Resource- 抛出:
IOException- if the resource cannot be resolved (in the file system or as some other known physical resource type)- 另请参阅:
-
getFileForLastModifiedCheck
Determine the File to use for timestamp checking. The default implementation delegates togetFile().- 返回:
- the File to use for timestamp checking (never
null) - 抛出:
FileNotFoundException- if the resource cannot be resolved as an absolute file path, i.e. is not available in a file systemIOException- in case of general resolution/reading failures
-
createRelative
This implementation throws a FileNotFoundException, assuming that relative resources cannot be created for this resource.- 指定者:
createRelative在接口中Resource- 参数:
relativePath- the relative path (relative to this resource)- 返回:
- the resource handle for the relative resource
- 抛出:
IOException- if the relative resource cannot be determined
-
getFilename
This implementation always returnsnull, assuming that this resource type does not have a filename.- 指定者:
getFilename在接口中Resource
-
equals
This implementation compares description strings. -
hashCode
public int hashCode()This implementation returns the description's hash code. -
toString
This implementation returns the description of this resource.
-