我写了一个简单的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”%>
是否以>
结尾?为什么会说>
是预期的?
感谢。
答案 0 :(得分:1)
在您的标记中
<%@ page import="java.util.*" session=”true” isErrorPage=”false”%>
这些不是通常的双引号,用
改变<%@ page import="java.util.*" session="true" isErrorPage="false"%>