jsp中的注释语法

时间:2012-10-24 11:58:21

标签: jsp tomcat jsp-tags

我在开头有一些(很多)带有注释代码的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 &lt;%-- tag

最后注释行是第13行! 当我将第13行的注释代码更改为

<%-- ----------- --%>

一切正常!

问题1:
为什么第1行不成问题? 编辑:因为它在第2行终止了!

问题2:
它是否正确&lt;%-------%&gt; “不被允许”作为评论?

1 个答案:

答案 0 :(得分:0)

我自己尝试了

<%-------%>作为评论。