缝动作法执行了两次?

时间:2011-09-13 12:32:48

标签: java seam2

我目前正在研究一个接缝项目并遇到问题。

我刚创建了一个新页面(一个名为MyPage.xhtml的xhtml)。 在xhtml我的代码中,你可以找到一个命令按钮和一个:repeater来显示我的数据:

<!-- input fields that are filters for my table shown below -->
<h:commandButton value="View details" action="/MyPage.xhtml"/>

<rich:panel rendered=#{myAction.showDetails}>
    <a:repeat value="#{myAction.findRecords()}" var="record">
        <!-- Some of my code to display a table, nothing fancy -->
    </a:repeat>
</rich:panel>

在我的行动中我有这个:

@DataModel
private List<MyEntity> records = new ArrayList<MyEntity>();

public List<MyEntity> findRecords() {
    //Do some query
    Query query = entityManager.createNamedQuery("myEntityQuery");
    records = query.getResultList();
    return records;
}

这是页面的工作方式:

  1. 显示我的输入框和命令按钮,而不是rich:面板,因为我的showDetails布尔值为false。
  2. 当showDetails布尔值设置为true时,将显示面板,迭代调用我的操作方法findRecords()。到目前为止一切都很好!
  3. 但是当我再次单击我的动作按钮时,动作方法findRecords()会执行两次。这是我的问题......
  4. 为什么要执行两次?我该如何限制它一次?现在它给我们带来了很多性能......!

    氪,

    德克

2 个答案:

答案 0 :(得分:0)

最有可能的方法是在视图重建(恢复视图阶段)和渲染期间(渲染响应阶段)执行。

尝试缓存方法是否已经执行或仅在单击按钮时执行该方法并提供简单的getter来传递数据。

作为一般说明,您应该仅在需要时(缓存结果)或在调用应用程序阶段(通常使用actionactionListener)执行昂贵的操作(如数据库查询)

答案 1 :(得分:0)

我会做这样的事情并使用Scopes来存储数据。如果你在重复中使用这样的函数,它将访问重复中每一行的方法。

<h:commandButton value="View details" action="/MyPage.xhtml"/>

<rich:panel rendered=#{myAction.showDetails}>
    <a:repeat value="#{records}" var="record">
        <!-- Some of my code to display a table, nothing fancy -->
    </a:repeat>
</rich:panel>



@Out
private List<MyEntity> records = new ArrayList<MyEntity>();

@Factory(value="records")
public void findRecords() {
   //Do some query
   Query query = entityManager.createNamedQuery("myEntityQuery");
   records = query.getResultList();
}