Package javax.servlet.annotation
Annotation Interface WebServlet
Annotation used to declare a servlet.
This annotation is processed by the container at deployment time, and the corresponding servlet made available at the specified URL patterns.
- Since:
- Servlet 3.0
- See Also:
-
Optional Element Summary
Modifier and TypeOptional ElementDescriptionboolean
Declares whether the servlet supports asynchronous operation mode.The description of the servletThe display name of the servletThe init parameters of the servletThe large-icon of the servletint
The load-on-startup order of the servletThe name of the servletThe small-icon of the servletString[]
The URL patterns of the servletString[]
The URL patterns of the servlet
-
Element Details
-
name
String nameThe name of the servlet- Default:
- ""
-
value
String[] valueThe URL patterns of the servlet- Default:
- {}
-
urlPatterns
String[] urlPatternsThe URL patterns of the servlet- Default:
- {}
-
loadOnStartup
int loadOnStartupThe load-on-startup order of the servlet- Default:
- -1
-
initParams
WebInitParam[] initParamsThe init parameters of the servlet- Default:
- {}
-
asyncSupported
boolean asyncSupportedDeclares whether the servlet supports asynchronous operation mode.- Default:
- false
-
smallIcon
String smallIconThe small-icon of the servlet- Default:
- ""
-
largeIcon
String largeIconThe large-icon of the servlet- Default:
- ""
-
description
String descriptionThe description of the servlet- Default:
- ""
-
displayName
String displayNameThe display name of the servlet- Default:
- ""
-