gpt4 book ai didi

jsf - 使用 JSF selectOneListbox 存储 Liferay 7 portlet 首选项

转载 作者:行者123 更新时间:2023-12-04 10:02:09 28 4
gpt4 key购买 nike

我正在将 Liferay 6.2 中的 JSF portlet 升级到 Liferay 7。

portlet 显示一个图标列表和一个 selectOneListbox用于控制这些图标的显示方式。

<h:selectOneListbox id="listModeSelector" value="#{user.listMode}" size="1">
<f:selectItems value="#{user.listModes}" var="mode"
itemLabel="#{mode.label}" itemValue="#{mode.value}" />
<f:ajax event="change" execute="@this" render=":metricsPanel" />
</h:selectOneListbox>

user.setListMode在更改 selectOneListbox 后调用,portlet 会将新选项保存到 portlet 首选项,并调用 bean 的 PortletPreferences' setValuestore职能:
@ManagedBean
@SessionScoped
public class User {
private static final String LIST_MODE_KEY = "listMode";
private ListMode listMode;
private PortletPreferences preferences;

public User() {
PortletRequest request = ((PortletRequest) FacesContext.getCurrentInstance().getExternalContext().getRequest());
preferences = request.getPreferences();
listMode = ListMode.fromValue( preferences.getValue( LIST_MODE_KEY, ListMode.Normal.getValue() ) );
}

public String getListMode() {
return listMode.getValue();
}

public ListMode[] getListModes() {
return ListMode.values();
}

public void setListMode( String listModeValue ) {
this.listMode = ListMode.fromValue( listModeValue );
try {
preferences.setValue( LIST_MODE_KEY, listModeValue );
preferences.store();
}
catch ( ...Exception e ) {
log.error( "unable to persist listMode: " + e.getMessage(), e );
}

}

}

当他们更改此设置时,我们希望它为他们保持更改,以供以后的任何 session 使用。但是自从迁移到 Liferay 7 后,这样做会导致 IllegalStateException留言 Preferences cannot be stored inside a render call .

所以我的问题是:在 Liferay 7 JSF 中,有没有办法存储 PortletPreferences从更改为类似 selectOneListbox 的项目,而不是提交表单?如果没有,这样做的正确方法是什么?

最佳答案

您应该始终使用当前请求的 portlet 首选项。当您使用 session bean 构造函数中的首选项(通常首先从渲染请求调用)时,首选项仍然与(过时的)渲染请求相关联。

我的意思是这样的:

public void setListMode( String listModeValue ) {
this.listMode = ListMode.fromValue( listModeValue );
try {
PortletPreferences preferences = ((PortletRequest) FacesContext.getCurrentInstance().getExternalContext().getRequest()).getPreferences();
preferences.setValue( LIST_MODE_KEY, listModeValue );
preferences.store();
}
...
}

关于jsf - 使用 JSF selectOneListbox 存储 Liferay 7 portlet 首选项,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/49370213/

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