我写了一个简单的JSP文件:
<%@ page import="java.util.*" session=”true” isErrorPage=”false”%>
<HTML>
<BODY>
<h4>Welcome to the world of JSP</h4>
This JSP uses the page directive
</BODY>
</HTML>
我在Eclipse中的第一行遇到错误:
Multiple annotations found at this line:
- Invalid location of text (>) in tag (<jsp:directive.page>).
- Start tag (<jsp:directive.page>) not closed properly, expected
'>'.
<%@ page import="java.util.*" session=”true” isErrorPage=”false”%>
似乎没有带有无效位置的>
。错误消息是什么意思?<%@ page import="java.util.*" session=”true” isErrorPage=”false”%>
以>
结束?为什么说>
是预期的?谢谢。
在你的标签
<%@ page import="java.util.*" session=”true” isErrorPage=”false”%>
这些不是通常的双引号,随之改变
<%@ page import="java.util.*" session="true" isErrorPage="false"%>