public class VirtualDirContext extends FileDirContext
VirtualWebappLoader
.
Sample context xml configuration:<Context path="/mywebapp" docBase="/Users/theuser/mywebapp/src/main/webapp" >
<Resources className="org.apache.naming.resources.VirtualDirContext"
extraResourcePaths="/pictures=/Users/theuser/mypictures,/movies=/Users/theuser/mymovies" />
<Loader className="org.apache.catalina.loader.VirtualWebappLoader"
virtualClasspath="/Users/theuser/mywebapp/target/classes" />
<JarScanner scanAllDirectories="true" />
</Context>
This is not meant to be used for production.
Its meant to ease development with IDE's without the
need for fully republishing jars in WEB-INF/libFileDirContext.FileResource, FileDirContext.FileResourceAttributes
absoluteBase, allowLinking, base, BUFFER_SIZE
aliases, altDirContexts, cached, cacheMaxSize, cacheObjectMaxSize, cacheTTL, docBase, env, nameParser, sm
ADD_ATTRIBUTE, REMOVE_ATTRIBUTE, REPLACE_ATTRIBUTE
APPLET, AUTHORITATIVE, BATCHSIZE, DNS_URL, INITIAL_CONTEXT_FACTORY, LANGUAGE, OBJECT_FACTORIES, PROVIDER_URL, REFERRAL, SECURITY_AUTHENTICATION, SECURITY_CREDENTIALS, SECURITY_PRINCIPAL, SECURITY_PROTOCOL, STATE_FACTORIES, URL_PKG_PREFIXES
Constructor and Description |
---|
VirtualDirContext() |
Modifier and Type | Method and Description |
---|---|
void |
allocate()
Allocate resources for this directory context.
|
protected String |
doGetRealPath(String path)
Return the real path for a given virtual path, if possible; otherwise
return
null . |
protected Object |
doLookup(String name)
Retrieves the named object.
|
protected File |
file(String name)
Return a File object representing the specified normalized
context-relative path if it exists and is readable.
|
protected File |
file(String name,
boolean mustExist)
Return a File object representing the specified normalized
context-relative path if it exists and is readable.
|
Attributes |
getAttributes(String name)
Retrieves all of the attributes associated with a named object.
|
protected List<NamingEntry> |
list(File file)
List the resources which are members of a collection.
|
void |
release()
Release any resources allocated for this directory context.
|
void |
setExtraResourcePaths(String path)
Allows to map a path of the filesystem to a path in the webapp.
|
protected File |
validate(File file,
String name,
boolean mustExist,
String absoluteBase) |
bind, createSubcontext, destroySubcontext, doGetAttributes, doListBindings, getAllowLinking, getNameInNamespace, getSchema, getSchemaClassDefinition, lookupLink, modifyAttributes, modifyAttributes, normalize, rebind, rename, search, search, search, search, setAllowLinking, setDocBase, unbind, validate
addAlias, addAltDirContext, addResourcesJar, addToEnvironment, bind, bind, bind, close, composeName, composeName, createSubcontext, createSubcontext, createSubcontext, destroySubcontext, getAliases, getAttributes, getAttributes, getAttributes, getCacheMaxSize, getCacheObjectMaxSize, getCacheTTL, getDocBase, getEnvironment, getNameParser, getNameParser, getRealPath, getSchema, getSchemaClassDefinition, isCached, list, list, listBindings, listBindings, lookup, lookup, lookupLink, modifyAttributes, modifyAttributes, rebind, rebind, rebind, removeAlias, removeFromEnvironment, rename, search, search, search, search, setAliases, setCached, setCacheMaxSize, setCacheObjectMaxSize, setCacheTTL, unbind
public void setExtraResourcePaths(String path)
Allows to map a path of the filesystem to a path in the webapp. Multiple filesystem paths can be mapped to the same path in the webapp. Filesystem path and virtual path must be separated by an equal sign. Pairs of paths must be separated by a comma.
Example:
/=/Users/slaurent/mywebapp/src/main/webapp,/pictures=/Users/slaurent/sharedpictures
The path to the docBase must not be added here, otherwise resources would be listed twice.
path
- The set of file system paths and virtual paths to map them to
in the required formatpublic void allocate()
allocate
in class BaseDirContext
public void release()
release
in class FileDirContext
public Attributes getAttributes(String name) throws NamingException
BaseDirContext
getAttributes
in interface DirContext
getAttributes
in class BaseDirContext
name
- the name of the object from which to retrieve attributesNamingException
- if a naming exception is encounteredprotected File file(String name)
FileDirContext
null
.file
in class FileDirContext
name
- Normalized context-relative path (with leading '/')protected File file(String name, boolean mustExist)
FileDirContext
null
.file
in class FileDirContext
name
- Normalized context-relative path (with leading '/')mustExist
- Must the specified resource exist?protected List<NamingEntry> list(File file)
FileDirContext
list
in class FileDirContext
file
- Collectionprotected Object doLookup(String name)
FileDirContext
doLookup
in class FileDirContext
name
- the name of the object to look upprotected String doGetRealPath(String path)
FileDirContext
null
.doGetRealPath
in class FileDirContext
path
- The path to the desired resourceCopyright © 2000-2021 Apache Software Foundation. All Rights Reserved.