Getting null when accessing initParameter in jsp

I am trying to access initParameter

in my jsp.

When I try to access initParameter

, it comes out as null.

My jsp page:

<%@ page language="java" contentType="text/html; charset=ISO-8859-1"
pageEncoding="ISO-8859-1"%>
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"   
"http://www.w3.org/TR/html4/loose.dtd">
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=ISO-8859-1">
<title>Insert title here</title>
</head>
<body>
<%   
String user=config.getInitParameter("User");  
out.print("Hello "+user);  
%>  
</body>
</html>

      

web.xml

<?xml version="1.0" encoding="UTF-8"?>
<web-app id="WebApp_ID" version="2.4" xmlns="http://java.sun.com/xml/ns/j2ee"     xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://java.sun.com/xml/ns/j2ee http://java.sun.com/xml/ns/j2ee/web-app_2_4.xsd">
<display-name>
Learning</display-name>
<welcome-file-list>
    <welcome-file>index.html</welcome-file>
</welcome-file-list>
<servlet>
<servlet-name>config</servlet-name>
<jsp-file>/config.jsp</jsp-file>
<init-param>
  <param-name>User</param-name>
  <param-value>Dummy</param-value>
</init-param>
</servlet>
<servlet-mapping>
  <servlet-name>config</servlet-name>
<url-pattern>/config.jsp</url-pattern>
</servlet-mapping>
</web-app>

      

I am getting null when accessing the init parameter. Please suggest.

+3


source to share


1 answer


If your name is JSP file config.jsp

, it should work.

In case you can get a null value, you write the following:

<% String user=config.getInitParameter("User"); 
out.print("Hello "+user);%>

      



In a JSP that is not config.jsp .

So please double check your JSP name and it should be directly below the WebContent in your project.

+3


source







All Articles