public class ResourceManagerImpl extends java.lang.Object implements ResourceManager
| 限定符和类型 | 字段和说明 |
|---|---|
protected ResourceCache |
globalCache
Object implementing ResourceCache to be our resource manager's Resource cache.
|
protected Log |
log
Logging.
|
static int |
RESOURCE_CONTENT
A static content resource.
|
static int |
RESOURCE_TEMPLATE
A template resources.
|
protected java.util.List |
resourceLoaders
The List of templateLoaders that the Runtime will use to locate the InputStream source of a template.
|
protected RuntimeServices |
rsvc
The internal RuntimeServices object.
|
RESOURCE_ES, RESOURCE_SQL| 构造器和说明 |
|---|
ResourceManagerImpl() |
| 限定符和类型 | 方法和说明 |
|---|---|
protected Resource |
createResource(java.lang.String resourceName,
int resourceType)
Create a new Resource of the specified type.
|
java.lang.String |
getLoaderNameForResource(java.lang.String resourceName)
Determines if a template exists, and returns name of the loader that provides it.
|
Resource |
getResource(java.lang.String resourceName,
int resourceType)
|
Resource |
getResource(java.lang.String resourceName,
int resourceType,
java.lang.String encoding)
Gets the named resource.
|
void |
initialize(RuntimeServices rsvc)
Initialize the ResourceManager.
|
void |
initTemplate(Resource resource,
java.lang.String encoding) |
protected Resource |
loadResource(java.lang.String resourceName,
int resourceType,
java.lang.String encoding)
Loads a resource from the current set of resource loaders.
|
protected Resource |
refreshResource(Resource resource,
java.lang.String encoding)
Takes an existing resource, and 'refreshes' it.
|
public static final int RESOURCE_TEMPLATE
public static final int RESOURCE_CONTENT
protected ResourceCache globalCache
protected final java.util.List resourceLoaders
protected RuntimeServices rsvc
protected Log log
public void initialize(RuntimeServices rsvc)
initialize 在接口中 ResourceManagerrsvc - The Runtime Services object which is associated with this Resource Manager.public Resource getResource(java.lang.String resourceName, int resourceType, java.lang.String encoding) throws ResourceNotFoundException, ParseErrorException
Template to
RESOURCE_TEMPLATE).
This method is now unsynchronized which requires that ResourceCache
implementations be thread safe (as the default is).getResource 在接口中 ResourceManagerresourceName - The name of the resource to retrieve.resourceType - The type of resource (RESOURCE_TEMPLATE, RESOURCE_CONTENT, etc.).encoding - The character encoding to use.ResourceNotFoundException - if template not found from any available source.ParseErrorException - if template cannot be parsed due to syntax (or other) error.protected Resource createResource(java.lang.String resourceName, int resourceType)
resourceName - The name of the resource to retrieve.resourceType - The type of resource (RESOURCE_TEMPLATE, RESOURCE_CONTENT, etc.).protected Resource loadResource(java.lang.String resourceName, int resourceType, java.lang.String encoding) throws ResourceNotFoundException, ParseErrorException
resourceName - The name of the resource to retrieve.resourceType - The type of resource (RESOURCE_TEMPLATE, RESOURCE_CONTENT, etc.).encoding - The character encoding to use.ResourceNotFoundException - if template not found from any available source.ParseErrorException - if template cannot be parsed due to syntax (or other) error.public void initTemplate(Resource resource, java.lang.String encoding)
initTemplate 在接口中 ResourceManagerprotected Resource refreshResource(Resource resource, java.lang.String encoding) throws ResourceNotFoundException, ParseErrorException
resource - resource to refreshencoding - character encoding of the resource to refresh.ResourceNotFoundException - if template not found from current source for this ResourceParseErrorException - if template cannot be parsed due to syntax (or other) error.public Resource getResource(java.lang.String resourceName, int resourceType) throws ResourceNotFoundException, ParseErrorException, java.lang.Exception
Template to
RESOURCE_TEMPLATE).resourceName - The name of the resource to retrieve.resourceType - The type of resource (RESOURCE_TEMPLATE, RESOURCE_CONTENT, etc.).ResourceNotFoundException - if template not found from any available source.ParseErrorException - if template cannot be parsed due to syntax (or other) error.java.lang.Exception - if a problem in parsepublic java.lang.String getLoaderNameForResource(java.lang.String resourceName)
getLoaderNameForResource 在接口中 ResourceManagerresourceName - Name of template or content resource