@Target(value=TYPE) @Retention(value=RUNTIME) @Documented public @interface WebServlet
This annotation is processed by the container at deployment time, and the corresponding servlet made available at the specified URL patterns.
Servlet
Modifier and Type | Optional Element and Description |
---|---|
boolean |
asyncSupported
Declares whether the servlet supports asynchronous operation mode.
|
String |
description
The description of the servlet
|
String |
displayName
The display name of the servlet
|
WebInitParam[] |
initParams
The init parameters of the servlet
|
String |
largeIcon
The large-icon of the servlet
|
int |
loadOnStartup
The load-on-startup order of the servlet
|
String |
name
The name of the servlet
|
String |
smallIcon
The small-icon of the servlet
|
String[] |
urlPatterns
The URL patterns of the servlet
|
String[] |
value
The URL patterns of the servlet
|
public abstract String name
public abstract String[] value
public abstract String[] urlPatterns
public abstract int loadOnStartup
public abstract WebInitParam[] initParams
public abstract boolean asyncSupported
public abstract String smallIcon
public abstract String largeIcon
public abstract String description
public abstract String displayName
Copyright © 1996-2013, Oracle and/or its affiliates. All Rights Reserved. Use is subject to license terms.