无法使用JSTL在JSF中使用c:redirect重定向

时间:2014-12-13 11:56:30

标签: jsf jstl

我的 adminPanel.xhtml

<?xml version="1.0" encoding="ISO-8859-1" ?>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
    "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">

<html xmlns="http://www.w3.org/1999/xhtml"
      xmlns:h="http://java.sun.com/jsf/html"
      xmlns:c="http://java.sun.com/jsp/jstl/core">
    <head>
        <meta http-equiv="Content-Type" content="text/html; charset=ISO-8859-1"/>
        <title>Insert title here</title>
    </head>
    <body>
        <c:redirect url="http://www.google.com"></c:redirect>
    </body>
</html>

当我运行上面的代码时,我得到:

  

HTTP状态500 - /loggedIn.xhtml @ 12,44标记库   支持namespace: http://java.sun.com/jsp/jstl/core,但没有标记   为名称定义:重定向

1 个答案:

答案 0 :(得分:1)

Facets 2.0中没有

<c:redirect>标记。有关可用或支持的标签的列表。见Tag Library Documentation Generator。您可以使用jsf页面导航来重定向。

类似主题:

Explicit url redirect in JSF 2.0

还有教程:​​