Skip navigation links

Oracle Fusion Middleware
Java API Reference for Oracle WebLogic Server
12c (12.2.1)

Part Number E55141-01
P4 Change 1723563 on 2015/10/09


weblogic.servlet.annotation
Annotation Type WLInitParam


@Target(value={})
@Retention(value=RUNTIME)
public @interface WLInitParam

The WLInitParam annotation is used within the context of the WLServlet or WLFilter annotations to declare the 'init-param' attributes for the servlet and filter elements of the web.xml descriptor.

Example:

  initParams = {@WLInitParam(name="one", value="1"),
                @WLInitParam(name="two", value="2")}
 

Annotating a Servlet or Filter class with the above annotation is equivalent to declaring the following in the web.xml descriptor:

  . . .
  <init-param>
   <param-name>one</param-name>
   <param-value>1</param-value>
  </init-param>
  <init-param>
   <param-name>two</param-name>
   <param-value>2</param-value>
  </init-param>
  . . .
 


Skip navigation links

Copyright 1996, 2015, Oracle and/or its affiliates. All rights reserved. Oracle is a registered trademark of Oracle Corporation and/or its affiliates. Other names may be trademarks of their respective owners.

Oracle Fusion Middleware
Java API Reference for Oracle WebLogic Server
12c (12.2.1)

Part Number E55141-01
P4 Change 1723563 on 2015/10/09