gpt4 book ai didi

java - JSF - 为什么 SessionScoped 类的实例未初始化?

转载 作者:行者123 更新时间:2023-12-01 14:57:30 25 4
gpt4 key购买 nike

我不想在 selectOneMenue 中显示我的枚举类 [license] 的值。

<h:selectOneMenu id="licenseclassmenue" >
<f:selectItem itemLabel="select license"/>
<f:selectItems value="#{licenseCodes.licenseCodes}"/>
</h:selectOneMenu><br />

我的许可证代码类:

/**
* convert enum to array of strings
*
* */
@ManagedBean(name = "licenseCodes" )
@SessionScoped
public class LicenseCodes {

public SelectItem[] getLicenseCodes() {
SelectItem[] licenses = new SelectItem[License.values().length];
int i = 0;
for (License l : License.values()) {
licenses[i++] = new SelectItem(l, l.name());
}
return licenses;
}

}

枚举

public enum License {
A("A"),B("B"),C("C");

private String value;

private License(String v) {
this.value = v;
};

}

当我部署项目时,selectOneMenue 中不会有任何许可证。在调试过程中,我注意到 getLicenseCodes() 永远不会被调用。

我在这里做错了什么?

最佳答案

这是您的类(class):

package so.question14163260;

import javax.annotation.PostConstruct;
import javax.faces.bean.ManagedBean;
import javax.faces.model.SelectItem;

@ManagedBean(name = "licenseCodes")
@SessionScoped
public class LicenseCodes {

private SelectItem[] licenses;

public LicenseCodes() {
System.out.println("================Inside===============");
}

@PostConstruct
public void init() {
SelectItem[] licenses = new SelectItem[License.values().length];
int i = 0;
for (License l : License.values()) {
licenses[i++] = new SelectItem(l, l.name());
}

setLicenses(licenses);
}

public SelectItem[] getLicenses() {
return licenses;
}

public void setLicenses(SelectItem[] licenses) {
this.licenses = licenses;
}
}

这是 xhtml:

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml"
xmlns:h="http://java.sun.com/jsf/html"
xmlns:f="http://java.sun.com/jsf/core"
xmlns:ui="http://java.sun.com/jsf/facelets">

<h:head></h:head>
<h:body>
<h:selectOneMenu id="licenseclassmenue" >
<f:selectItem itemLabel="select license"/>
<f:selectItems value="#{licenseCodes.licenses}"/>
</h:selectOneMenu>
</h:body>
</html>

这是屏幕截图

enter image description here

如您所见,它正在工作。

更新

我在测试时忘记添加@SessionScoped注释。现在添加后也可以了。

关于java - JSF - 为什么 SessionScoped 类的实例未初始化?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/14163260/

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