如何设置托管bean以使用Notes文档

时间:2013-06-09 14:45:54

标签: xpages

我想在Notes视图中设置一个管理Notes文档的托管bean,我在其中存储应用程序首选项(例如,服务器上的路径以存储附件,应用程序标题,要显示的徽标等) 有没有人为这样一个bean做一个例子以及我应该如何使用它?

当前我加载一个SSJS库,将所有内容放在应用程序范围或会话范围变量中。

2 个答案:

答案 0 :(得分:13)

以下是此类托管bean的一个简单示例。

首先创建一个Java类。我称之为“Config”。它在视图“Config”中读取第一个文档,并在实例化时间(=第一次调用)放置java字段中的项目。这样做可以在读完所有项目后回收多米诺骨牌对象,然后将值保存在内存中。

package de.leonso;
import java.io.Serializable;
import lotus.domino.Database;
import lotus.domino.Document;
import lotus.domino.View;
import com.ibm.xsp.extlib.util.ExtLibUtil;

public class Config implements Serializable {
    private static final long serialVersionUID = 1L;    
    private String applicationTitle;
    // ... other private fields

    public Config() throws NotesException {
        Database db = ExtLibUtil.getCurrentSession().getCurrentDatabase();
        View view = db.getView("Config");
        Document doc = view.getFirstDocument();
        applicationTitle = doc.getItemValueString("ApplicationTitle");
        // ... read all other items and store them in private fields
        doc.recycle();
        view.recycle();
        db.recycle();
    }

    public String getApplicationTitle() {
        return applicationTitle;
    }

    // ... getters for other private fields

}

接下来,在faces-config.xml文件中将此Java类定义为托管bean:

<faces-config>
  <managed-bean>
    <managed-bean-name>config</managed-bean-name>
    <managed-bean-class>de.leonso.Config</managed-bean-class>
    <managed-bean-scope>application</managed-bean-scope>
  </managed-bean>
</faces-config>

您可以使用作为范围“应用程序”(每个服务器的实例)或“会话”(每个用户的实例)。

然后你可以在JavaScript中使用配置bean:

#{javascript:var titel = config.applicationTitle; ...}

或表达语言:

#{config.applicationTitle}

这应该为您提供开发配置bean的高级版本的良好起点。

答案 1 :(得分:0)

应用程序范围的bean绝对是一个很好的方法。一旦你对Java更加熟悉,你可能想要考虑使用VariableResolver,甚至是OSGi插件,如果其中一些选项是服务器范围的。我还发布了一个XSnippet,用于从xsp.properties中检索值,这些值也适用于某些设置http://openntf.org/s/retrieve-property-from-xsp.properties-in-nsf-server-or-notes.ini