Package javax.servlet.annotation
Annotation Type WebServlet
-
@Target(TYPE) @Retention(RUNTIME) @Documented public @interface WebServletAnnotation 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:
Servlet
-
-
Optional Element Summary
Optional Elements Modifier and Type Optional Element Description booleanasyncSupportedDeclares whether the servlet supports asynchronous operation mode.java.lang.StringdescriptionThe description of the servletjava.lang.StringdisplayNameThe display name of the servletWebInitParam[]initParamsThe init parameters of the servletjava.lang.StringlargeIconThe large-icon of the servletintloadOnStartupThe load-on-startup order of the servletjava.lang.StringnameThe name of the servletjava.lang.StringsmallIconThe small-icon of the servletjava.lang.String[]urlPatternsThe URL patterns of the servletjava.lang.String[]valueThe URL patterns of the servlet
-
-
-
-
initParams
WebInitParam[] initParams
The init parameters of the servlet- Returns:
- the init parameters of the servlet
- Default:
- {}
-
-
-
asyncSupported
boolean asyncSupported
Declares whether the servlet supports asynchronous operation mode.- Returns:
trueif the servlet supports asynchronous operation mode- See Also:
ServletRequest.startAsync(),ServletRequest.startAsync( javax.servlet.ServletRequest,javax.servlet.ServletResponse)
- Default:
- false
-
-