2

对于我认为是一个非常简单的场景,我收到了 null Converter 错误:

<!-- My View -->
<ui:composition template="/template/template_v1.xhtml"
            xmlns="http://www.w3.org/1999/xhtml"
            xmlns:ui="http://java.sun.com/jsf/facelets"
                xmlns:h="http://java.sun.com/jsf/html">
<!-- Simplified for clarity -->    
<h:form>
    <div class="block-panel customer-data">
        <h:outputLabel for="txtUsername">Username:</h:outputLabel>
        <h:inputText id="txtUsername" name="Username" 
                     value="#{userBean.user.id}"
                     styleClass="text" />
        <rich:message id="errorUsername" for="txtUsername"/>
    </div>
    <!--  Other fields omitted for clarity  -->
</h:form>

/* The User Bean - simplified */
@ManagedBean
@ViewScoped
public class UserBean implements Serializable {
    private User user;

    public User getUser() {
        // Contains logic for reading a user from the database or creating a new
        // user object
        return user;
    }

    public void setUser(User user) {
        this.user = user;
    }

}

/* The user Entity - Simplified */
@Entity
@Table(name = "user")
@Inheritance(strategy = InheritanceType.JOINED)
@DiscriminatorColumn(name = "user_type", discriminatorType = DiscriminatorType.STRING)
public class User implements IEntity<String>, Serializable {
private static final long serialVersionUID = 1L;

    private String id;

    @Id
    @Column(name = "username", length = 50)
    @NotNull(message = "{userIdMandatory}")
    @Size(max = 50)
    public String getId() {
        return this.id;
    }

    public void setId(String id) {
        this.id = id;
    }

}

/* The IEntity interface */
public interface IEntity<ID extends Serializable> {
    ID getId();
    void setId(final ID pId);
}

所以基本上我正在尝试将我的用户实体的字符串属性绑定到 inputText 字段。就我而言,应该不需要转换,所以我不应该得到我看到的错误。

有趣的是,如果我将以下 getter 和 setter 添加到我的实体中:

public String getTmpId() {
    return this.id;
}

public void setTmpId(String id) {
    this.id = id;
}

然后对我的视图进行必要的更改以绑定到 tmpId 而不是 id,一切都按预期工作。

这对我来说似乎是一个错误,要么与我绑定到接口中定义的 getter/setter、在通用接口中定义的事实有关,要么因为 getter 标记有 Id 属性。不过,我会欣赏别人的想法。

顺便说一句,我继承了这个设计,并不特别喜欢它,所以我可能只是重构它以引入一个新的用户名属性,而不是尝试使用 Id。

4

1 回答 1

1

据我所知,我认为这是由 BeanELResolver 中的一个模糊错误引起的,该错误用于获取绑定到的属性的类型 - 而不是返回 String,它返回的是 Serializable,没有转换器,因此错误我在看。

它不是特别优雅,但我通过向我的 userBean 添加一个 userId 属性然后在我的视图中绑定到它而不是用户实体上的 Id 属性来解决这个问题。然后,我在保存实体时使用该值在实体上手动设置 ID:

<!-- My New View -->
<ui:composition template="/template/template_v1.xhtml"
            xmlns="http://www.w3.org/1999/xhtml"
            xmlns:ui="http://java.sun.com/jsf/facelets"
                xmlns:h="http://java.sun.com/jsf/html">
<!-- Simplified for clarity -->    
<h:form>
    <div class="block-panel customer-data">
        <h:outputLabel for="txtUsername">Username:</h:outputLabel>
        <h:inputText id="txtUsername" name="Username" 
                     value="#{userBean.userId}"
                     styleClass="text" />
        <rich:message id="errorUsername" for="txtUsername"/>
    </div>
    <!--  Other fields omitted for clarity  -->

/* The New User Bean - simplified */
@ManagedBean
@ViewScoped
public class UserBean implements Serializable {
    private string userId;
    private User user;

    public String getUserId() {
        return userId;
    }

    public void setUserId(String userId) {
        this.userId = userId;
    }

    public User getUser() {
        // Contains logic for reading a user from the database or creating a new
        // user object
        return user;
    }

    public void setUser(User user) {
        this.user = user;
    }

    public void saveUser() {
        if (user.getId() == null) {
            user.setId(userId);
        }
        // Actual saving omitted for brevity
    }
}
于 2012-05-11T15:57:56.973 回答