gpt4 book ai didi

java - 得到 as ManagedProperty in backing bean

转载 作者:行者123 更新时间:2023-12-02 07:16:41 25 4
gpt4 key购买 nike

首先我想说我是 JSF 的新手。

我想创建简单的复合组件,可用于编辑文章。它应该以这种方式工作:

  1. 复合组件看起来像这样 <my:article article="#{interestedBean.article}" />
  2. ArticleBean负责复合组件的数据处理(这里是save方法)
  3. 每个想要使用文章的页面都需要将复合组件添加到 View 中,并且Article对象到支持 bean
  4. Article对象将被传递给复合组件,其值将在 ArticleBean 中更改

问题是我不知道如何通过 View 将实体( Article 对象)从一个 bean(感兴趣的 bean)传递到另一个( ArticleBean )。

示例(伪代码;让我们假设 Article 实体是简单的 String 对象,因此我们不需要使用转换器):

// input bean
public class HomePageBean {
private Article article;
@PostConstruct
public void init() {
this.article = new Article();
this.article.setText("welcome on home page");
}
public void setArticle(Article article) {
this.article = article;
}
public Article article() {
return article; // on real page article will be taken from database
}
}

// view
<h:form>
<h:outputText value="#{articleBean.article.text}">
<f:attribute name="value" value="#{homePageBean.article.text}" />
</h:outputText>
</h:form>

// output bean
public class ArticleBean {
private Article article;
public void setArticle(Article article) {
this.article = article;
}
public Article getArticle() {
return article;
}
public void save() {
// save article data to database
}
}

// entity
public class Article {
private article text;
public String getText() {
return text;
}
public void setText(String text) {
this.text = text;
}
}

问题是 SecondBean.entity.text值未设置。如何从 View 中将参数传递给支持 bean?我试图设置 Article值使用 @ManagedProperty(value="#{param.article}")但是<h:outputText>是形式,因此该值作为 randomformname:article 传递.

对不起我的英语

最佳答案

其实这个问题需要澄清一下。因此,我对您可能想做的事情有两个基本想法。

在一个 View 上简单地共享信息

如果您想在同一 View 上共享信息,您可以使用 @ManagedProperty 相互注入(inject)托管 bean 。请记住,注入(inject)的 bean 的作用域不能小于它所注入(inject)的 bean 的作用域。实际上,如果您需要的只是一个文章对象,那么我看不出在您的情况下使用两个托管 bean 的原因,但是您仍然可以使用

@ManagedBean
@RequestScoped
public class BaseBean {

private Article article;

@ManagedProperty(value="#{injectedBean}")
private InjectedBean injectedBean;

}

要初始化您希望相同的托管 bean 的两个属性,您可以使用带有 @PostConstruct 注释的 init 方法。 (但有很多选择),就像这里

@PostConstruct
public void init() {
Article article = new Article("Welcome");
this.article = article;
injectedBean.setArticle(article);
}

在 View 之间共享信息

在这种情况下,用户在第一个 View 中选择他想要编辑的文章,并将其传递到第二个 View 。在这种情况下,用户在一个页面 ( welcome.xhtml ) 上选择他想要操作的文章,而实际操作发生在另一页 ( manipulation.xhtml ) 上。

常见的方法是每个页面都由自己的 bean 支撑,因此在上述设置中,“基础 bean”将失去其注入(inject)。所以,welcome.xhtml View 将使用从某处弹出的该页面上的一些文章对象,并将其传递给单击按钮时的第二个 View 以进行操作。

bean 与文章对象的 reagrd 相同。

@ManagedBean
@RequestScoped
public class BaseBean {

private Article article;

}

@ManagedBean
@RequestScoped
public class InjectedBean {

private Article article;

}

实际的传递将在按钮单击期间发生,如

    <h:form>
<h:commandButton value="Manipulation" action="manipulation.xhtml">
<f:setPropertyActionListener target="#{injectedBean.article}" value="#{baseBean.article}"/>
</h:commandButton>
</h:form>

在代码中,属性操作监听器方法正在为第二个 View 实例化一个 bean,并使用基本 bean 的属性来设置它的属性。

使用获取参数进行页面加载

有时,不包含命令按钮来触发导航到下一个 View ,而是提供一个简单的链接来编辑页面会更有意义。可以通过使用 <f:param> 来实现标签。在 JSF 中处理参数有两种基本方法:通过使用页面操作/preRenderView事件或通过使用 @ManagedProperty 将它们直接注入(inject)到您的托管 bean 中.

  1. 使用页面操作/preRenderView Activity

该工作将由目标 View 完成

<f:metadata>
<f:viewParam id="articleId" name="articleId" value="#{injectedBean.id}" />
<f:event type="preRenderView" listener="#{injectedBean.initEvent}" />
</f:metadata>

对于preRenderView事件和

<f:metadata>
<f:viewParam id="articleId" name="articleId" value="#{injectedBean.id}" />
<f:viewAction action="#{injectedBean.initEvent}" />
</f:metadata>

用于页面操作。托管 bean(InjectedBean 对象)将具有以下 init 方法

public void initEvent() {
if (id == null) {
String message = "No id specified in request";
FacesContext.getCurrentInstance().addMessage(null, new FacesMessage(message));
return;
}
//use your service method to load the article
//article = articleService.findById(id);
//and add messages appropriately
}
  • 使用@ManagedProperty注释
  • 该工作将通过以下 bean 方法完成,注释为 @PostConstruct ,以及参数依赖注入(inject)。请记住,要使设置正常工作,bean 必须是 @RequestScoped ,但对于其他 bean 作用域也有解决方法。

    @ManagedProperty(value="#{param.articleId}")
    private Integer id;

    @PostConstruct
    public void initPostConstruct() {
    if (id == null) {
    String message = "No id specified in request";
    FacesContext.getCurrentInstance().addMessage(null, new FacesMessage(message));
    return;
    }
    //use your service method to load the article
    //article = articleService.findById(id);
    //and add messages appropriately
    }

    无论如何,bean 都会在下一个 View ( manipulation.xhtml ) 期间初始化。 BalusC 提供的这两种方式非常有用的比较,可以找到 here .

    例如,可以通过简单的 <h:link> 来处理对此 View 的导航。 ,就像在

    <h:link value="Manipulate" outcome="manipulation.xhtml" >
    <f:param name="articleId" value="#{baseBean.article.id}" />
    </h:link>

    关于java - 得到<h :outputText> as ManagedProperty in backing bean,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/14860391/

    25 4 0
    Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
    广告合作:1813099741@qq.com 6ren.com