Which, when added to the web application deployment descriptor, ensures that line 5 is included verbatim in the JSP output?

Given tutorial.jsp:

Which, when added to the web application deployment descriptor, ensures that line 5 is included
verbatim in the JSP output?

Given tutorial.jsp:

Which, when added to the web application deployment descriptor, ensures that line 5 is included
verbatim in the JSP output?

A.
<jsp-config>
<url-pattern>*.jsp</url-pattern>
<el-ignored>true</el-ignored>
</jsp-config>

B.
<jsp-config>
<url-pattern>*.jsp</url-pattern>
<isELIgnored>true</isELIgnored>
</jsp-config>

C.
<jsp-config>
<jsp-property-group>
<el-ignored>*.jsp</el-ignored>
</jsp-property-group>
</jsp-config>

D.
<jsp-config>
<jsp-property-group>
<url-pattern>*.jsp</url-pattern>
<el-ignored>true</el-ignored>
</jsp-property-group>
</jsp-config>

E.
<jsp-config>
<jsp-property-group>
<url-pattern>*.jsp</url-pattern>
<isElIgnored>true</isElIgnored>
</jsp-property-group>
</jsp-config>

Explanation:



Leave a Reply 0

Your email address will not be published. Required fields are marked *