web.xml 中 JspServlet 中 <init-param>mappedfile</init-param> 的用途是什么?

What is purpose of <init-param>mappedfile</init-param> in JspServlet in web.xml?

web.xml 中 JspServlet 中 'mappedfile' init-param 的用途是什么?

<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>

如果我将它设置为 'TRUE' 会怎样?如果我将它设置为 'False' 会发生什么?

注意:我需要将此作为解决问题的解决方案,在该问题中,应用程序中的 JSP 之一给出了超过 65535 字节限制的错误。如果更改为 false 或 true,我需要确定这是否会导致任何全局问题。

这是一个调整性能的参数。

默认 属性 值已针对 JSP 文件的开发进行了调整,但会牺牲性能。要最大化性能,请将 jsp-config 属性设置为这些非默认值:

development - false (as an alternative, set to true and give modificationTestInterval a large value)

mappedfile - false

trimSpaces - true

suppressSmap - true

fork - false (on Solaris)

classdebuginfo - false

mappedFile 描述: 我们是否应该为每个输入行生成一个打印语句的静态内容,以便于调试? true or false,默认true.

来源:https://docs.oracle.com/cd/E19226-01/820-7693/beatx/index.html

你也可以看这里: