The associated servlet does not compile.
The comment start (<%--) is replicated verbatim inside the generated servlet class and this is obviously bad syntax:
<%-- just a comment --
out.write("\r\n");
out.write("%>");
Description
Small test case (jsp file):
<%
<%-- just a comment --%>
%>
The associated servlet does not compile.
The comment start (<%--) is replicated verbatim inside the generated servlet class and this is obviously bad syntax:
<%-- just a comment --
out.write("\r\n");
out.write("%>");