1

我在 JSF 中有以下代码

<h:outputLabel value="Date" for="rdate" />
   <h:inputText id="rdate" autocomplete="off" 
       value="#{myMB.abstractProject.joinedDate}">
   </h:inputText>

在实体类中,我声明为

private Date joinedDate; 

public Date getJoinedDate() {
    return joinedDate;
}

public void setJoinedDate(Date joinedDate) {
    this.joinedDate= joinedDate;
}

问题是,在 ManagedBean 中,以下内容为空

System.out.println("date in save method "
+ abstractRequest.getJoinedDate());

这可能是什么原因?h:inputText事实上在<h:form>. 我的 bean 的范围是@ViewAccessScoped

4

3 回答 3

2

你需要使用f:convertDateTime. 像:

<h:outputLabel value="Date" for="rdate" />
<h:inputText id="rdate" autocomplete="off" value="#{myMB.abstractProject.joinedDate}" label="Date">
   <f:convertDateTime pattern="dd-MM-yyyy" />
</h:inputText>

是一个例子。

编辑:

这是我所做的:

xhtml:

<ui:composition xmlns="http://www.w3.org/1999/xhtml" xmlns:ui="http://java.sun.com/jsf/facelets" xmlns:h="http://java.sun.com/jsf/html"
    xmlns:f="http://java.sun.com/jsf/core" template="/WEB-INF/templates/globalTemplate.xhtml">

    <ui:define name="title">1532116</ui:define>
    <ui:define name="content">          
        <h:form>
            <h:outputLabel value="Date" for="date" />
            <h:inputText id="date" value="#{so15321163.date}" label="Date" required="true">
                <f:convertDateTime pattern="dd-MM-yyyy"/>
            </h:inputText>              
            <h:message for="date" style="color:red" />              
            <h:commandButton value="Submit" actionListener="#{so15321163.listener}"/>                   
        </h:form>
    </ui:define>    
</ui:composition>

托管bean:

package app.so.dev.web.controller;

import java.io.Serializable;
import java.util.Date;

import javax.annotation.PostConstruct;
import javax.faces.bean.ManagedBean;
import javax.faces.bean.ViewScoped;
import javax.faces.event.ActionEvent;

@ManagedBean(name="so15321163")
@ViewScoped // @SessionScoped
public class SO15321163 implements Serializable {

    /**
     * 
     */
    private static final long serialVersionUID = 8012804893825661900L;
    private Date date;

    @PostConstruct
    public void init() {

    }

    public void listener(ActionEvent event) {
        System.out.println(date);
    }

    public Date getDate() {
        return date;
    }

    public void setDate(Date date) {
        this.date = date;
    }   
}
于 2013-03-10T10:22:10.700 回答
1

不确定,但是如果您缺少注释 @Named 则 jsf bean 无法正常工作。

这里有一些更详细的解释:https ://cwiki.apache.org/confluence/display/EXTCDI/Conversations

于 2013-03-10T15:49:29.113 回答
1

我已经解决了这个问题,问题是Converter另一个表单元素中存在错误,导致表单提交停止。我使用了一个Converter类来解决这个问题。

谢谢

于 2013-03-10T18:54:18.760 回答