gpt4 book ai didi

java - 如何从另一个类调用存储在 applicationScope 中的 ArrayList

转载 作者:行者123 更新时间:2023-12-03 18:42:08 26 4
gpt4 key购买 nike

我想从另一个类中调用存储在 applicationScope 中的 ArrayList

我有一个类似这样的类,它在公共(public)变量名称 AL_data 中存储大量数据,方法 getAllData 只是将数据存储在 AL_data 中

public class Application implements Serializable{

private static final long serialVersionUID = 1L;
public ArrayList<District> AL_data;

public Application(){
try {
getAllData();
} catch (NotesException e) {
e.printStackTrace();
}
}
}

我已经使用 applicationScope 在 faces-config 中将该类设置为托管 bean

<managed-bean>
<managed-bean-name>App</managed-bean-name>
<managed-bean-class>com.utils.Application</managed-bean-class>
<managed-bean-scope>application</managed-bean-scope>
</managed-bean>

我还有另一个类,我想用它来读取应用程序范围

public class actions {

private static Map<String, Object> applicationScope() {
FacesContext context = FacesContext.getCurrentInstance();
return (Map<String, Object>) context.getApplication().getVariableResolver().resolveVariable(context,"applicationScope");
}

public Vector<String> getDataForCurrentUser() {

try {

// how do I access the AL_data arraylist stored in applicationscope
// ArrayList m = (ArrayList) this.applicationScope();


} catch (Exception e) {
e.printStackTrace();
}
return null;
}

并且我已经使用 sessionScope 将此类设置为管理 bean。

<managed-bean>
<managed-bean-name>Actions</managed-bean-name>
<managed-bean-class>com.utils.actions</managed-bean-class>
<managed-bean-scope>session</managed-bean-scope>
</managed-bean>

我想知道如何调用应用程序范围类并访问它的公共(public)属性,或者如何返回我的 ArrayList。

谢谢

托马斯

最佳答案

将公共(public)方法添加到您的应用程序作用域 bean,其他 Java 类可以使用该方法访问该 bean 的实例:

public static Application get() {
FacesContext context = FacesContext.getCurrentInstance();
return (Application) context.getApplication().getVariableResolver().resolveVariable("App");
}

然后您可以使用该方法从 Actions 类获取应用程序作用域 bean 的实例,然后访问该 bean 的方法和变量:

public class actions {

public Vector<String> getDataForCurrentUser() {
// Access the AL_data arraylist stored in the App application scoped bean
ArrayList<District> m = Application.get().AL_data;
}

关于java - 如何从另一个类调用存储在 applicationScope 中的 ArrayList,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/54971189/

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