如何将get请求和参数与JSF和ajax请求一起使用?

时间:2012-08-14 11:29:32

标签: jsf-2 primefaces http-request-parameters

我想知道将get请求,参数和ajax请求与JSF一起使用的常用方法是什么?

我想要实现的是将id参数传递给JSF页面,从数据库中检索具有给定参数的实体,并在JSF页面上显示实体。然后,我想对实体进行一些更改并将其填充回数据库(通过ajax)。

我坚持这一步,我希望将更改填充回数据库。以下是我到目前为止的情况:

我有一个非常简单的JSF页面和一个控制器(ManagedBean)。

JSF页面

<h:body>
    <h:form id="myForm">
        <p:messages />
        <h:panelGrid columns="3">
            <h:outputLabel value="#{requestController.id}" />
            <p:commandButton value="Update" action="#{requestController.updateEntity}" update="myForm" />
        </h:panelGrid>
    </h:form>
</h:body>

控制器

@Component("requestController")
@Scope("request")
public class RequestController {

@Value("#{request.getParameter('id')}")
private String id;

private String entity;

@PostConstruct
public void init() {
    if(id == null || id.equals("")) {
        entity = "Entity not found";
    }
    else if("1".equals(id)) {
        entity = "FirstEntity";
    }
    else {
        entity = "SecondEntity";
    }
}

public String getEntity() {
    return entity;
}

public void updateEntity() {
    entity += "_updated";
}

public String getId() {
    return id;
}
}

我可以使用id参数打开JSF页面,实体将正确显示。但是,当我单击更新按钮时,将新实例化Controller并且id参数消失。

在JSF中处理请求参数和ajax请求的常用方法是什么?

1 个答案:

答案 0 :(得分:2)

解决方案是在页面中的每个请求中添加请求参数。这可以使用<f:param>代码完成。

因此,要使上述代码有效,您只需将初始请求参数包含在命令按钮中:

<p:commandButton value="Update" action="#{requestController.updateEntity}" update="myForm" >
    <f:param name="id" value="#{requestController.id}" />
</p:commandButton>