一开始我得到了一些(很多)带有注释代码的jsp文件。
它看起来
<%-------------------------------------------%>
<%-- All the comment text about the author --%>
<%-- And of course the company --------------%>
<%-------------------------------------------%>
我在 Tomcat 7.0.30 上安装了应用程序并收到以下错误:
org.apache.jasper.JasperException: /path/to/jsp/file.jsp
(line: 13, column: 4) Unterminated <%-- tag
最后的注释行是第 13 行!
当我将第 13 行的注释代码更改为
<%-- ----------- --%>
一切正常!
问题1:
为什么1号线没有问题?编辑:因为它在第 2 行终止!
问题2:
<%--------%> 作为评论“不允许”是正确的吗?