com.sun.jersey.api.core
Class ClasspathResourceConfig
java.lang.Object
javax.ws.rs.core.Application
com.sun.jersey.api.core.ResourceConfig
com.sun.jersey.api.core.DefaultResourceConfig
com.sun.jersey.api.core.ClasspathResourceConfig
public class ClasspathResourceConfig
- extends DefaultResourceConfig
A mutable implementation of DefaultResourceConfig
that dynamically
searches for root resource and provider classes in the files and directories
declared by the property PROPERTY_CLASSPATH
.
That property MUST be included in the map of initial properties passed to
the constructor.
- Author:
- Frank D. Martinez. fmartinez@asimovt.com
Field Summary |
static java.lang.String |
PROPERTY_CLASSPATH
The property value MUST be an instance String or String[]. |
Method Summary |
void |
reload()
Perform a new search for resource classes and provider classes. |
Methods inherited from class java.lang.Object |
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait |
PROPERTY_CLASSPATH
public static final java.lang.String PROPERTY_CLASSPATH
- The property value MUST be an instance String or String[]. Each String
instance represents one or more paths that MUST be separated by ';'.
Each path MUST be an absolute or relative directory, or a Jar file.
The contents of a directory, including Java class files, jars files
and sub-directories (recusively) are scanned. The Java class files of
a jar file are scanned.
Root resource clases MUST be present in the Java class path.
- See Also:
- Constant Field Values
ClasspathResourceConfig
public ClasspathResourceConfig()
ClasspathResourceConfig
public ClasspathResourceConfig(java.util.Map<java.lang.String,java.lang.Object> props)
- Parameters:
props
- the property bag that contains the property
PROPERTY_CLASSPATH
.
ClasspathResourceConfig
public ClasspathResourceConfig(java.lang.String[] paths)
- Parameters:
paths
- the array paths consisting of either jar files or
directories containing jar files for class files.
reload
public void reload()
- Perform a new search for resource classes and provider classes.
Copyright © 2008 Sun Microsystems, Inc. All Rights Reserved.