What is the Difference Between init-param and context-param in JSP ?

We can specify both init-param and context-param in web.xml file.

We use init-param to specify the parameters that are specific to a servlet or jsp. This information is confined to the scope of that JSP.

We use context-param to specify the parameters for overall application scope. This information does not change easily. It can be used by all the JSP/Servlet in that Container.



You May Interest

What are the Rules of Method Overloading and Method Overriding in ...

Why Do We Use Tag Library in JSP ?

Why Did Oracle Release a New Version of Java Like Java 8 ?

What are the Differences Between a List and Set Collection in Jav ...

When Does JVM Call the Finalize Method in Java ?