从 JSF 访问复合键时目标无法访问

发布于 2024-09-13 23:17:40 字数 1264 浏览 8 评论 0原文

在我的 JSF 中,我做了

<h:outputLabel value="Group:" for="group" />
<h:inputText id="group" value="#{newUserController.group.groupKey.groupId}" title="Group Id" />

Group.java

@Entity
public class Group {

    @EmbeddedId
    private GroupKey groupKey;

    @ManyToOne
    @JoinColumn(name="userId")
    private User user;
    //setter, getter, constructors, equals and hashes
}

GroupKey.java

@Embeddable
public class GroupKey {

    @Column(name="userId", insertable=false, updatable=false)
    private String userId;

    private String groupId;
    //setter, getter, constructors, equals and hashes
}

因此,当我尝试保留该对象时,它给了我这个错误

value="#{newUserController.group.groupKey.groupId}": Target Unreachable, 'null' returned null

编辑
这是我的托管 Bean 的内容。

@ManagedBean(name="newUserController") 
@RequestScoped
public class NewUserController {

    private User user = new User();

    private Group group = new Group();    

    @EJB
    DocumentSBean sBean;

    public void createNewUser(){
        user.addGroup(group);
        sBean.persist(user);
    }
}

Inside my JSF I did

<h:outputLabel value="Group:" for="group" />
<h:inputText id="group" value="#{newUserController.group.groupKey.groupId}" title="Group Id" />

Group.java

@Entity
public class Group {

    @EmbeddedId
    private GroupKey groupKey;

    @ManyToOne
    @JoinColumn(name="userId")
    private User user;
    //setter, getter, constructors, equals and hashes
}

GroupKey.java

@Embeddable
public class GroupKey {

    @Column(name="userId", insertable=false, updatable=false)
    private String userId;

    private String groupId;
    //setter, getter, constructors, equals and hashes
}

So when I try to persist the object, it give me this error

value="#{newUserController.group.groupKey.groupId}": Target Unreachable, 'null' returned null

EDIT
Here is the content of my Managed Bean.

@ManagedBean(name="newUserController") 
@RequestScoped
public class NewUserController {

    private User user = new User();

    private Group group = new Group();    

    @EJB
    DocumentSBean sBean;

    public void createNewUser(){
        user.addGroup(group);
        sBean.persist(user);
    }
}

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(3

暮年慕年 2024-09-20 23:17:40

#{newUserController.group}#{newUserController.group.groupKey} 返回 null。 JSF 将仅设置 last 属性(在本例中为 groupId)。如果这是模板实体,您需要为 group 和/或 groupKey 提供/预设一个默认且非空的值。例如,您可以在 bean 的(后)构造函数中执行此操作。如果这是一个现有实体,您需要确保 JPA 正确预填充了这些属性。

Either #{newUserController.group} or #{newUserController.group.groupKey} returned null. JSF will only set the last property (which is groupId in this case). If this is a template entity, you need to provide/preset a default and non-null value for group and/or groupKey. You can do this in for example the (post)constructor of the bean. If this is an existing entity, you need to ensure that those properties are properly prepopulated by JPA.

做个少女永远怀春 2024-09-20 23:17:40

我通过添加到 Group 类来解决它

 @PostConstruct
   public void init(){
     groupKey=new GroupKey();
 }

,它将被初始化并且不会返回 null。

I solved it by adding

 @PostConstruct
   public void init(){
     groupKey=new GroupKey();
 }

to the Group Class, it will be initialized and it will not return null.

天涯离梦残月幽梦 2024-09-20 23:17:40

PostConstruct 对我不起作用(但我是新手,所以请接受它的价值)。但是,将其添加到实体类构造函数中却可以。

public Group() {
   this.groupKey=new GroupKey();
}

The PostConstruct did not work for me (but I'm a newbie so take that for what it's worth). However, adding it to the entity class constructor did.

public Group() {
   this.groupKey=new GroupKey();
}
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文