0

OpenCms インストールをカスタマイズしていて、コンテンツの一部を配信するオブジェクトを作成しました。オブジェクトは、このコンテンツを 1 時間に 1 回変更します。OpenCms の起動時にこの Bean をロードして、メモリに常駐し、タイマーを設定できるようにする方法を教えてください。

4

1 に答える 1

1

数時間の調査とテストの後、2 つの方法を発見しました。

1) クラスをモジュールの Action クラスとして定義します - このアプローチはテストしていません

2)管理レイヤーで利用可能なジョブスケジューラを使用します-これは私が試したもので、正常に動作します。I_CmsScheduledJob インターフェイスを実装するクラスを作成する必要があります。

package com.xxx.Trial;

import org.opencms.file.*;
import org.opencms.main.*;
import org.opencms.scheduler.I_CmsScheduledJob;
import java.text.SimpleDateFormat;
import java.util.Calendar;


public class BuildTagCloud implements I_CmsScheduledJob {
  private String text;

  public String launch(CmsObject object, java.util.Map parameters) throws java.lang.Exception {
   Calendar cal = Calendar.getInstance();
   SimpleDateFormat sdf = new SimpleDateFormat("yyyy-MM-dd HH:mm:ss");

   String data = "Last run: " + sdf.format(cal.getTime());
   this.text = data;

   String resname = "/system/modules/com.xxx.Trial/elements/file.jsp";
   // CmsObject object = OpenCms.initCmsObject("Guest");
   object.loginUser("Admin", "admin's password");

   CmsRequestContext cmsContext = object.getRequestContext();
   CmsProject curProject = cmsContext.currentProject();

   if(curProject.isOnlineProject()){
         CmsProject offlineProject = object.readProject("Offline");
         cmsContext.setCurrentProject(offlineProject);
   }
   CmsResource res = object.readResource(resname);
   object.lockResource(resname);
   CmsFile file = object.readFile(res);
   file.setContents(text.getBytes());
   object.writeFile(file);
   OpenCms.getPublishManager().publishResource(object, resname);
   object.unlockResource(resname);

   return text;

  }

}

これが誰かを助けることができることを願っています!

于 2010-02-15T13:37:15.890 に答える