jsp脚本必须使用"<%"和"%>"括起来,否则被视为模板数据,中间的部分必须遵循java语法,否则会发生编译错误。
<jsp:param name="user" value="<%=name %>"/>这段语句有错,并且在tomcat服务器中会提示,原因在于name后面多了一个空格,还有value跟"user"之间也必须有空格,小心!
type Exception report
message /loginCheck.jsp (line: 34, column: 45) The JSP specification requires that an attribute name is preceded by whitespace
description The server encountered an internal error that prevented it from fulfilling this request.
web.xml中前面包含有些多余的标签如<display-name>会导致报404的错误
“Open the Java build path Property page of project ''” 原因:JDK版本不一致:
解决办法:
打开window—>preferences,在Java—>installed JREs里面有一个编辑jre的功能,选择你的jdk.
<jsp:param name="user" value="<%=name %>"/>这段语句有错,并且在tomcat服务器中会提示,原因在于name后面多了一个空格,还有value跟"user"之间也必须有空格,小心!
type Exception report
message /loginCheck.jsp (line: 34, column: 45) The JSP specification requires that an attribute name is preceded by whitespace
description The server encountered an internal error that prevented it from fulfilling this request.
web.xml中前面包含有些多余的标签如<display-name>会导致报404的错误
“Open the Java build path Property page of project ''” 原因:JDK版本不一致:
解决办法:
打开window—>preferences,在Java—>installed JREs里面有一个编辑jre的功能,选择你的jdk.