|
||||||||||
| 上一个类 下一个类 | 框架 无框架 | |||||||||
| 摘要: 必需 | 可选 | 详细信息: 元素 | |||||||||
@Target(value=TYPE) @Retention(value=RUNTIME) @Documented public @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.
Servlet| 可选元素摘要 | |
|---|---|
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
ServletRequest.startAsync(),
ServletRequest.startAsync(ServletRequest,
ServletResponse)public abstract String smallIcon
public abstract String largeIcon
public abstract String description
public abstract String displayName
|
||||||||||
| 上一个类 下一个类 | 框架 无框架 | |||||||||
| 摘要: 必需 | 可选 | 详细信息: 元素 | |||||||||