IntelliJ IDEA 2018.2 Help

Specifying the Servlet Initialization Parameters

You can customize the servlet initialization by specifying initialization parameters of the servlet. This allows the servlet to perform various one-time activities by overriding the init method of the Servlet interface. An initialization attribute is defined through the Name and Value parameters. In the Web application deployment descriptor web.xml, these parameters are presented as <param-name> and <param-value> elements.

Last modified: 20 November 2018

See Also