opencms 配置重點類

2021-04-16 16:40:43 字數 685 閱讀 5520

opencmscore 是核心類 

/*** initialize member variables.

*/protected void initmembers()

}包括很多init 方法 initcmsobject,initcontext,

initconfiguration 從opencms.properties配置檔案讀取配置資訊,並建立 cmsobject物件

initresource 從 opencms vfs讀取請求的資源

shutdown 銷毀時,銷毀所有系統物件;可見所有資源都在此管理。

cmsshell 類是命令列執行的類。

cmssysteminfo 在此可以看到opencms系統中幾個特定目錄的設定,從而了解系統的檔案規則,由opencmscore 類建立

/** the name of the opencms.properties file. */

public static final string file_properties = "opencms.properties";

/** the name of the module folder in the package path. */

public static final string folder_modules = "modules" + file.separatorchar;

Spring重點類 標籤介紹

spring aop 通知,配置它的類會在方法執行之前執行。spring aop 通知,配置它的類會在方法執行之後執行。spring aop 通知,配置它的類會在異常丟擲之後執行。它結合了上面的三個通知,在方法執行過程中執行。建立乙個實現了methodinterceptor介面的類。必須呼叫 met...

第七章 類(重點)

在c 語言中,我們使用類定義自己的資料型別。資料抽象能幫助我們將物件的具體實現與物件所能執行的操作分離開來。資料抽象是一種依賴於介面和實現分離的程式設計 以及設計 技術。類的介面包括使用者所能執行的操作 類的實現則包括類的資料成員 負責介面實現的函式體以及定義類所需的各種私有函式。封裝實現了類的介面...

C 類與物件重點概要

一 c 中struct和class的區別 c 需要相容c語言,所以c 中struct可以當成結構體去使用,另外c 中struct還可以用來定義類,和class是定義類是一樣的,區別是struct的成員預設訪問方式是public,class是struct的成員預設訪問方式是private。二 類的例項...