仍在努力制作一个cacheBean。根据我的阅读,我想我希望bean是一个单例。只需要
它的一个实例。用它来获取常用的关键字等等。

http://blog.defrog.nl/2013/02/prefered-way-for-referencing-beans-from.html

我使用此模式制作了CacheBean(并使用了实用程序方法)。

如果通过将其放入Faces-config中使其成为ManagedBean,那么我可以轻松地获得模型的价值

<xp:text escape="true" id="computedField1"
value="#{CacheBean.models}"></xp:text>


JSF为我实例化了bean。

但是我不希望它一遍又一遍地重新加载相同的值(例如模型)。我认为要实现这一目标,我需要
POJO并获取Bean的currentInstance,如url中所示。

但是,当我进行此更改时(将bean从faces-config文件中取出,我似乎无法获得这些属性的句柄。

这甚至不会编译:

<xp:text escape="true" id="computedField1"
        value="#{Cache.getCurrentInstance().models}">
    </xp:text>

What am I doing wrong?


================================

package com.scoular.cache;

import java.io.Serializable;
import org.openntf.domino.xsp.XspOpenLogUtil;

import com.scoular.Utils;

public class CacheBean implements Serializable {

    private static final long serialVersionUID = -2665922853615670023L;
    public static final String BEAN_NAME = "CacheBean";

    private String pcDataDBpath;

    private Vector<Object> models = new Vector<Object>();


    public CacheBean() {
         initConfigData();
    }

    private void initConfigData() {
        try {
      loadModels();
      loadDBPaths();
        } catch (Exception e) {
            XspOpenLogUtil.logError(e);
        }
    }


    // Getters and Setters

    public static CacheBean getInstance(String beanName) {
        return (CacheBean) Utils.getVariableValue(beanName);
    }

    public static CacheBean getInstance() {
        return getInstance(BEAN_NAME);

    }

    public String getPcDataDBpath() {
        return pcDataDBpath;
    }

    public void setPcDataDBpath(String pcDataDBpath) {
        this.pcDataDBpath = pcDataDBpath;
    }

    public void loadDBPaths() {

        Session session = Factory.getSession();
        Database tmpDB = session.getCurrentDatabase();

        pcAppDBpath = (tmpDB.getServer() + "!!" + "scoApps\\PC\\PCApp.nsf");
        pcDataDBpath = (tmpDB.getServer() + "!!" + "scoApps\\PC\\PCData.nsf");
        compDirDBpath = (tmpDB.getServer() + "!!" + "compdir.nsf");
    }

    public void loadModels() {
        try {
            Session session = Factory.getSession();
            Database tmpDB = session.getCurrentDatabase();
            Database PCDataDB = session.getDatabase(tmpDB.getServer(), "scoApps\\PC\\PCData.nsf");
            ViewNavigator vn = PCDataDB.getView("dbLookupModels").createViewNav();
            ViewEntry entry = vn.getFirst();
            while (entry != null) {
                Vector<Object> thisCat = entry.getColumnValues();
                if (entry.isCategory()) {
                    String thisCatString = thisCat.elementAt(0).toString();
                    models.addElement(thisCatString);
                }
                entry = vn.getNextCategory();
            }
        } catch (Exception e) {
            XspOpenLogUtil.logError(e);
        }
    }


p

ackage com.scoular;

import javax.faces.context.FacesContext;

public class Utils {

      public static Object getVariableValue(String varName) {
            FacesContext context = FacesContext.getCurrentInstance();
            return context.getApplication().getVariableResolver().resolveVariable(context, varName);
          }
}

最佳答案

如果bean具有正确的作用域,则可以直接访问该bean(如果已创建)。

private static final String BEAN_NAME = "CacheBean";

//access to the bean
    public static CacheBean get() {
            return (CacheBean) JSFUtil.resolveVariable(BEAN_NAME);
    }

//in my JSFUtil class I have the method
public static Object resolveVariable(String variable) {
        return FacesContext.getCurrentInstance().getApplication().getVariableResolver().resolveVariable(FacesContext.getCurrentInstance(), variable);
    }


因此,在Java类中,您可以调用

CacheBean.get().models


在EL中,您可以使用

CacheBean.models

10-05 22:39