javax.servlet.annotation
Annotation Type WebServlet


@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.

Since:
Servlet 3.0
See Also:
Servlet

Optional Element Summary
 boolean asyncSupported
          Declares whether the servlet supports asynchronous operation mode.
 java.lang.String description
          The description of the servlet
 java.lang.String displayName
          The display name of the servlet
 WebInitParam[] initParams
          The init parameters of the servlet
 java.lang.String largeIcon
          The large-icon of the servlet
 int loadOnStartup
          The load-on-startup order of the servlet
 java.lang.String name
          The name of the servlet
 java.lang.String smallIcon
          The small-icon of the servlet
 java.lang.String[] urlPatterns
          The URL patterns of the servlet
 java.lang.String[] value
          The URL patterns of the servlet
 

name

public abstract java.lang.String name
The name of the servlet

Default:
""

value

public abstract java.lang.String[] value
The URL patterns of the servlet

Default:
{}

urlPatterns

public abstract java.lang.String[] urlPatterns
The URL patterns of the servlet

Default:
{}

loadOnStartup

public abstract int loadOnStartup
The load-on-startup order of the servlet

Default:
-1

initParams

public abstract WebInitParam[] initParams
The init parameters of the servlet

Default:
{}

asyncSupported

public abstract boolean asyncSupported
Declares whether the servlet supports asynchronous operation mode.

See Also:
ServletRequest.startAsync(), ServletRequest.startAsync(ServletRequest, ServletResponse)
Default:
false

smallIcon

public abstract java.lang.String smallIcon
The small-icon of the servlet

Default:
""

largeIcon

public abstract java.lang.String largeIcon
The large-icon of the servlet

Default:
""

description

public abstract java.lang.String description
The description of the servlet

Default:
""

displayName

public abstract java.lang.String displayName
The display name of the servlet

Default:
""


Submit a bug or feature

Copyright © 2009-2011, Oracle Corporation and/or its affiliates. All Rights Reserved. Use is subject to license terms.

Generated on 10-February-2011 12:41

Scripting on this page tracks web page traffic, but does not change the content in any way.