gpt4 book ai didi

Java Tapestry : why is onActivate method called twice?

转载 作者:行者123 更新时间:2023-11-30 08:02:33 28 4
gpt4 key购买 nike

我有一个 Tapestry 页面,其中有两个具有不同参数的 onActivate() 方法。

//在这种情况下调用这两个方法

void onActivate(String filterSetJson) {
schema = getSchema();
if (ValueHelper.isDefined(filterSetJson) && !filterSetJson.equals("all")) {
setFilterSet( filterSetJson );
}
else {
setFilterSet("{}"); // Empty filter set
}
this.loadedTagSummary = false;
sortOrderForTags="count";
sortOrderForTypes="count";
}


void onActivate(String filterSetJson, int pageCount) {
//onActivate( filterSetJson );
this.pageCount = pageCount;
}

有时此页面会使用两个参数调用,有时则使用一个参数。问题是,当使用两个参数调用页面时,两个 onActivate() 方法都会被调用。仅应调用接受两个参数的方法。

正如下面链接中所建议的,我修改了代码,使其只有一个接受 EventContext 作为参数的 onActivate() 方法。 http://apache-tapestry-mailing-list-archives.1045711.n5.nabble.com/Multiple-onActivate-methods-td2434897.html#a2434901

所以修改后的代码如下。

//在本例中以下方法被调用两次

Object onActivate(EventContext eContext){
int paramCount = eContext.getCount();
if( paramCount == 0 ) return true;
String filterSetJson = eContext.get(String.class, 0);
if( paramCount > 1 ){
int pageCount = eContext.get(Integer.class, 1);
this.pageCount = pageCount;
}
schema = getSchema();
if (ValueHelper.isDefined(filterSetJson) && !filterSetJson.equals("all")) {
setFilterSet( filterSetJson );
}
else {
setFilterSet("{}"); // Empty filter set
}
this.loadedTagSummary = false;
sortOrderForTags="count";
sortOrderForTypes="count";
return true;
}

现在,问题是 onActivate() 仍然被调用两次。一旦参数存在,另一次则没有参数(我认为这次 EventContext 是空的)。因此,我必须添加对参数的检查,如果参数不存在则返回。这避免了整个代码被执行两次,但仍然不是一个干净的修复。我不明白为什么该方法被调用两次。我考虑了一些邮件列表帖子中建议的以下潜在原因。

1:我确信页面上没有图像被指定相对路径。所有图像均加载“上下文”

2:没有父类(super class)实现 onActivate() 方法。它仅存在于此类中。

有趣的是,正如下面链接中所建议的,如果我从两个 onActivate() 方法都返回 true,那么只调用一个方法,问题就解决了! http://apache-tapestry-mailing-list-archives.1045711.n5.nabble.com/T5-onActivate-called-twice-td2428923.html

这是运行良好的代码。

//在这种情况下只调用一个方法。这是正确的行为

Object onActivate(String filterSetJson) {
schema = getSchema();
if (ValueHelper.isDefined(filterSetJson) && !filterSetJson.equals("all")) {
setFilterSet( filterSetJson );
}
else {
setFilterSet("{}"); // Empty filter set
}
this.loadedTagSummary = false;
sortOrderForTags="count";
sortOrderForTypes="count";
return true;
}


Object onActivate(String filterSetJson, int pageCount) {
//onActivate( filterSetJson );
this.pageCount = pageCount;
return true;
}

我可以接受这个解决方案,但我不明白这里发生了什么。任何人都可以阐明为什么两个 onActivate() 方法在不返回 true 时都会被调用,或者为什么 onActivate(EventContext eContext) 被调用两次?

发布此问题的另一个原因是为我自己和其他人记录此问题,因为我在这个问题上花了很多时间。

Tapestry 版本为 5.3

最佳答案

请阅读页面here ,特别是

A good "rule of thumb" is to use onActivate(...) and onPassivate() for no more than receiving and returning the activation context.

您应该小心使用 onActivate,因为它可能会在您意想不到的时候被调用(例如在渲染 pagelink 时)。您的 onActivate 方法应该是“哑”的,并且仅存储值,仅此而已。将您的逻辑放在另一个事件中(例如 setupRender)。

我似乎还记得 Tapestry 中的一些奇怪的逻辑,它会调用所有 onActivate() 方法,其数量等于或小于 URL 上的页面激活上下文变量的数量。

我要么:

1) 使用单个 onActivate(EventContext) 方法来存储值。将所有逻辑移至 setupRender

2)使用@PageActivationContextsetupRender

@PageActivationContext(index=0)
private String filterSetJson;

@PageActivationContext(index=1)
private Integer pageCount;

void setupRender() {
if (pageCount == null) {
...
} else {
...
}
}

注意:多个@PageActivationContext是最近的new feature

这两个选项大致相同。

关于Java Tapestry : why is onActivate method called twice?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/31679881/

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