对于我认为是一个非常简单的场景,我收到了 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。