|
Apache Tomcat 7.0.28 | ||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |
java.lang.Object org.apache.naming.resources.BaseDirContext org.apache.naming.resources.FileDirContext org.apache.naming.resources.VirtualDirContext
public class VirtualDirContext
Extended FileDirContext implementation that allows to expose multiple
directories of the filesystem under a single webapp, a feature mainly used
for development with IDEs.
This should be used in conjunction with
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/lib
Nested Class Summary |
---|
Nested classes/interfaces inherited from class org.apache.naming.resources.FileDirContext |
---|
FileDirContext.FileResource, FileDirContext.FileResourceAttributes |
Field Summary |
---|
Fields inherited from class org.apache.naming.resources.FileDirContext |
---|
absoluteBase, allowLinking, base, BUFFER_SIZE |
Fields inherited from class org.apache.naming.resources.BaseDirContext |
---|
aliases, altDirContexts, cached, cacheMaxSize, cacheObjectMaxSize, cacheTTL, docBase, env, nameParser, sm |
Fields inherited from interface javax.naming.directory.DirContext |
---|
ADD_ATTRIBUTE, REMOVE_ATTRIBUTE, REPLACE_ATTRIBUTE |
Fields inherited from interface javax.naming.Context |
---|
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 Summary | |
---|---|
VirtualDirContext()
|
Method Summary | |
---|---|
void |
allocate()
Allocate resources for this directory context. |
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. |
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. |
Methods inherited from class org.apache.naming.resources.FileDirContext |
---|
bind, createSubcontext, destroySubcontext, doGetAttributes, doGetRealPath, doListBindings, getAllowLinking, getNameInNamespace, getSchema, getSchemaClassDefinition, list, lookupLink, modifyAttributes, modifyAttributes, normalize, rebind, rename, search, search, search, search, setAllowLinking, setDocBase, unbind |
Methods inherited from class org.apache.naming.resources.BaseDirContext |
---|
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, listBindings, listBindings, lookup, lookup, lookupLink, modifyAttributes, modifyAttributes, rebind, rebind, rebind, removeAlias, removeFromEnvironment, rename, search, search, search, search, setAliases, setCached, setCacheMaxSize, setCacheObjectMaxSize, setCacheTTL, unbind |
Methods inherited from class java.lang.Object |
---|
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait |
Constructor Detail |
---|
public VirtualDirContext()
Method Detail |
---|
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
- public 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 attributes
NamingException
- if a naming exception is encounteredprotected File file(String name)
FileDirContext
null
.
file
in class FileDirContext
name
- Normalized context-relative path (with leading '/')protected List<NamingEntry> list(File file)
FileDirContext
list
in class FileDirContext
file
- Collection
protected Object doLookup(String name)
FileDirContext
doLookup
in class FileDirContext
name
- the name of the object to look up
|
Apache Tomcat 7.0.28 | ||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |