Expecting "jsp:param" standard action with "name" and "value" attributes

浏览器访问报如下jsp标签错误:

 根据提示,定位到jsp页面124行,代码如下:

 查找原因,当<jsp:include></jsp:include>标签中没有参数时,不允许有空格和空行

<jsp:include page="include/header.jsp"></jsp:include><!-- 此处必须在同一行,不能换行 -->

参考帖子

当有参数时,不要留空行或注释,将我的代码改成如下,即可

原文地址:https://www.cnblogs.com/alphajuns/p/11867193.html