在我使用 JSF 之前,以下代码在 JSP 文件中运行:
<c:if test="${not (empty request.error)}">
Error: ${request.getAttribute("error")}
</c:if>
现在,当我使用 JSF 时,我收到了这个错误:
/login.xhtml @24,51 test="${not (empty request.error)}" /login.xhtml @24,51 test="${not (empty request.error)}": 属性'error' not在 org.apache.catalina.connector.RequestFacade 类型上找到
这里有什么问题/解决方案?编辑器没有在任何内容下划线。
整个 login.xhtml:
<?xml version='1.0' encoding='UTF-8' ?>
<!DOCTYPE composition PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<ui:composition xmlns:ui="http://java.sun.com/jsf/facelets"
template="./template.xhtml"
xmlns:c="http://java.sun.com/jsp/jstl/core">
<ui:define name="userBar">
<form method="POST" action="Login">
<table>
<tr>
<td>Login</td>
<td><input type="text" name="login" /></td>
</tr>
<tr>
<td>Password</td>
<td><input type="password" name="password" /></td>
</tr>
<tr>
<td colspan="2"><input type="submit" value="Login" /></td>
</tr>
</table>
</form>
<c:if test="${not (empty request.error)}">
Error: ${request.getAttribute("error")}
</c:if>
</ui:define>
<ui:define name="content">
content
</ui:define>
</ui:composition>