作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我想从另一个类中调用存储在 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/
我是一名优秀的程序员,十分优秀!