@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
true if the servlet supports asynchronous operation modeServletRequest.startAsync(),
ServletRequest.startAsync(ServletRequest,
ServletResponse)public abstract String smallIcon
public abstract String largeIcon
public abstract String description
public abstract String displayName
Copyright © 2019 JBoss by Red Hat. All rights reserved.