标签中的文本(>)错误( ):文本的位置无效(>)和预期的'>'

问题描述 投票:1回答:1

我写了一个简单的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”%>>结束?为什么说>是预期的?

谢谢。

java jsp java-ee
1个回答
1
投票

在你的标签

<%@ page import="java.util.*" session=”true” isErrorPage=”false”%>

这些不是通常的双引号,随之改变

<%@ page import="java.util.*" session="true" isErrorPage="false"%>
© www.soinside.com 2019 - 2024. All rights reserved.