What is purpose of 'mappedfile' init-param in JspServlet in web.xml?
<servlet>
<servlet-name>jsp</servlet-name>
<servlet-class>org.apache.jasper.servlet.JspServlet</servlet-class>
<init-param>
<param-name>fork</param-name>
<param-value>false</param-value>
</init-param>
<init-param>
<param-name>xpoweredBy</param-name>
<param-value>false</param-value>
</init-param>
<init-param>
<param-name>mappedfile</param-name>
<param-value>false</param-value>
</init-param>
<load-on-startup>3</load-on-startup>
</servlet>
What if i set it to 'TRUE'? What will happen if i set it to 'False'?
Note: I need to implement this as a solution to problem in which one of JSP in application is giving error of exceeding the 65535 bytes limit. I need to find whether this will cause any global issue or not if changed to false or true.