我试图在我的 JSP 中包含一个 HTML 文件,但我 Eclipse 显示了这个错误
包含的文件
<%@include file="includes/head.html" %>
和错误
Processing instruction not closed
而这只是简单的 JSP
<%@include file = "includes/head.html" %>
<form action = "#" method = "POST">
Username: <input type = "text" name = "username"><br/>
Password: <input type = "password" name = "password"><br/>
</form>
</body>
</html>