English 中文(简体)
基本JSF 2和TOMC 6行动结果导航问题
原标题:Basic JSF 2 and tomcat 6 action result navigation issue

I have a JSF 2.0 with mojara EL 2.2 on tomcat 6 and had it working for some time now during the development. I recently added a form with a command button for login (basic stuff) which checks the username and password in the managed bean at the action doLogin.

public String doLogin(){
    FacesMessage message = null;
    if((username.equals("user"))&&(password.equals("pass")))
        return "testpage.xhtml";
    else
        message = new FacesMessage("Invalid username or password");

    FacesContext.getCurrentInstance().addMessage(null, message);

    return null;
}

问题在于它经过 DoLogin 并返回 < strug > " testpage. xhtml" 之后, 同样的页面会被显示。 尽管在 WebContent 的根部里有所有 xhtml s 文件 。

在Tomcat的控制台,我得到:

JSF的EL解脱者没有在JSP集装箱上登记。

使用EL2.2的通过参数工作正常。

我用JSF 和面板。

问题回答

自 JSF 2. 0 开始引入隐性导航。 在旧 JSF 1.x 中, 您需要定义 < code> lt; navigation- rule> 中 < code > acode> faces- config. xml 中的 < code > ExternalContext# redirect () 。

这个问题表明您的 JSF 2. 0 网络应用程序正在以 JSF 1.x 后退操作方式运行。 请确认您的 < code>faces- config. xml 被宣布为符合 JSF 2. 0 规格版本 。

<?xml version="1.0" encoding="UTF-8"?>

<faces-config
    xmlns="http://java.sun.com/xml/ns/javaee"
    xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
    xsi:schemaLocation="http://java.sun.com/xml/ns/javaee http://java.sun.com/xml/ns/javaee/web-facesconfig_2_0.xsd"
    version="2.0">

    <!-- Config here. -->

</faces-config>

EL 解答警告与此无关。 它是由在Tomcat 6 上使用玻璃鱼的 EL 2. 2 导致的。 您无法在.jsp 页面上使用EL (如果您只使用Flacelets, 就不会有问题 ) 。 如果您想要摆脱这个警告, 请使用 < a href=> https://stackoverflow.com/ questions/3284236/jsf-0-0-method-inpeople/384328328234328" > > > JBos EL 而不是Glasfish EL。 JBos EL 是强化的EL 2. 1 执行, 而 Glasfish EL 是 EL 2. 2 执行 。

我不确定,BCOZ,我看不到另一个代码。

如果您在面部配置 xml 中不设定特定的导航规则 。

$SUB- DirectORY1 测试页.xhtml 默认值为$SUB- DirtoORY1 测试页

在 JSF 2. 0 测试视图中, 请将您的代码转换为暗含导航 。 请更改您的代码喜欢这里,

    public String doLogin(){
       FacesMessage message = null;
       if((username.equals("user"))&&(password.equals("pass"))) {
            return "testpage";
       } else {
            message = new FacesMessage("Invalid username or password");
            FacesContext.getCurrentInstance().addMessage(null, message);
       }
    return null;
}




相关问题
Spring Properties File

Hi have this j2ee web application developed using spring framework. I have a problem with rendering mnessages in nihongo characters from the properties file. I tried converting the file to ascii using ...

Logging a global ID in multiple components

I have a system which contains multiple applications connected together using JMS and Spring Integration. Messages get sent along a chain of applications. [App A] -> [App B] -> [App C] We set a ...

Java Library Size

If I m given two Java Libraries in Jar format, 1 having no bells and whistles, and the other having lots of them that will mostly go unused.... my question is: How will the larger, mostly unused ...

How to get the Array Class for a given Class in Java?

I have a Class variable that holds a certain type and I need to get a variable that holds the corresponding array class. The best I could come up with is this: Class arrayOfFooClass = java.lang....

SQLite , Derby vs file system

I m working on a Java desktop application that reads and writes from/to different files. I think a better solution would be to replace the file system by a SQLite database. How hard is it to migrate ...

热门标签