-
- All Superinterfaces:
- Registration, Registration.Dynamic, ServletRegistration
- Enclosing interface:
- ServletRegistration
public static interface ServletRegistration.Dynamic extends ServletRegistration, Registration.Dynamic
Interface through which aServlet
registered via one of the addServlet methods onServletContext
may be further configured.
-
-
Nested Class Summary
-
Nested classes/interfaces inherited from interface javax.servlet.ServletRegistration
ServletRegistration.Dynamic
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method and Description void
setLoadOnStartup(int loadOnStartup)
Sets theloadOnStartup
priority on the Servlet represented by this dynamic ServletRegistration.void
setMultipartConfig(MultipartConfigElement multipartConfig)
Sets theMultipartConfigElement
to be applied to the mappings defined for thisServletRegistration
.void
setRunAsRole(String roleName)
Sets the name of therunAs
role for thisServletRegistration
.Set<String>
setServletSecurity(ServletSecurityElement constraint)
Sets theServletSecurityElement
to be applied to the mappings defined for thisServletRegistration
.-
Methods inherited from interface javax.servlet.ServletRegistration
addMapping, getMappings, getRunAsRole
-
Methods inherited from interface javax.servlet.Registration.Dynamic
setAsyncSupported
-
Methods inherited from interface javax.servlet.Registration
getClassName, getInitParameter, getInitParameters, getName, setInitParameter, setInitParameters
-
-
-
-
Method Detail
-
setLoadOnStartup
void setLoadOnStartup(int loadOnStartup)
Sets theloadOnStartup
priority on the Servlet represented by this dynamic ServletRegistration.A loadOnStartup value of greater than or equal to zero indicates to the container the initialization priority of the Servlet. In this case, the container must instantiate and initialize the Servlet during the initialization phase of the ServletContext, that is, after it has invoked all of the ServletContextListener objects configured for the ServletContext at their
ServletContextListener.contextInitialized(javax.servlet.ServletContextEvent)
method.If loadOnStartup is a negative integer, the container is free to instantiate and initialize the Servlet lazily.
The default value for loadOnStartup is
-1
.A call to this method overrides any previous setting.
- Parameters:
loadOnStartup
- the initialization priority of the Servlet- Throws:
IllegalStateException
- if the ServletContext from which this ServletRegistration was obtained has already been initialized
-
setServletSecurity
Set<String> setServletSecurity(ServletSecurityElement constraint)
Sets theServletSecurityElement
to be applied to the mappings defined for thisServletRegistration
.This method applies to all mappings added to this
ServletRegistration
up until the point that theServletContext
from which it was obtained has been initialized.If a URL pattern of this ServletRegistration is an exact target of a
security-constraint
that was established via the portable deployment descriptor, then this method does not change thesecurity-constraint
for that pattern, and the pattern will be included in the return value.If a URL pattern of this ServletRegistration is an exact target of a security constraint that was established via the
ServletSecurity
annotation or a previous call to this method, then this method replaces the security constraint for that pattern.If a URL pattern of this ServletRegistration is neither the exact target of a security constraint that was established via the
ServletSecurity
annotation or a previous call to this method, nor the exact target of asecurity-constraint
in the portable deployment descriptor, then this method establishes the security constraint for that pattern from the argumentServletSecurityElement
.- Parameters:
constraint
- theServletSecurityElement
to be applied to the patterns mapped to this ServletRegistration- Returns:
- the (possibly empty) Set of URL patterns that were already
the exact target of a
security-constraint
that was established via the portable deployment descriptor. This method has no effect on the patterns included in the returned set - Throws:
IllegalArgumentException
- if constraint is nullIllegalStateException
- if theServletContext
from which thisServletRegistration
was obtained has already been initialized
-
setMultipartConfig
void setMultipartConfig(MultipartConfigElement multipartConfig)
Sets theMultipartConfigElement
to be applied to the mappings defined for thisServletRegistration
. If this method is called multiple times, each successive call overrides the effects of the former.- Parameters:
multipartConfig
- theMultipartConfigElement
to be applied to the patterns mapped to the registration- Throws:
IllegalArgumentException
- if multipartConfig is nullIllegalStateException
- if theServletContext
from which this ServletRegistration was obtained has already been initialized
-
setRunAsRole
void setRunAsRole(String roleName)
Sets the name of therunAs
role for thisServletRegistration
.- Parameters:
roleName
- the name of therunAs
role- Throws:
IllegalArgumentException
- if roleName is nullIllegalStateException
- if theServletContext
from which this ServletRegistration was obtained has already been initialized
-
-
Traduction non disponible
Les API Java ne sont pas encore traduites en français sur l'infobrol. Seule la version anglaise est disponible pour l'instant.
Version en cache
21/08/2025 13:01:34 Cette version de la page est en cache (à la date du 21/08/2025 13:01:34) afin d'accélérer le traitement.Vous pouvez activer le mode utilisateur dans le menu en haut pour afficher la version plus récente de la page.
Document créé le 11/06/2005, dernière modification le 18/08/2025
Source du document imprimé : https://www.gaudry.be/java-api-javaee-rf-javax/servlet/ServletRegistration.Dynamic.html
L'infobrol est un site personnel dont le contenu n'engage que moi. Le texte est mis à disposition sous licence CreativeCommons(BY-NC-SA). Plus d'info sur les conditions d'utilisation et sur l'auteur.
Références
Manuel PHP : https://docs.oracle.com,
ServletRegistration.Dynamic (Java(TM) EE 7 Specification APIs)
Ces références et liens indiquent des documents consultés lors de la rédaction de cette page, ou qui peuvent apporter un complément d'information, mais les auteurs de ces sources ne peuvent être tenus responsables du contenu de cette page.
L'auteur de ce site est seul responsable de la manière dont sont présentés ici les différents concepts, et des libertés qui sont prises avec les ouvrages de référence. N'oubliez pas que vous devez croiser les informations de sources multiples afin de diminuer les risques d'erreurs.