1. 程式人生 > >ABAP function group和Tomcat library重復加載問題

ABAP function group和Tomcat library重復加載問題

pro imageview 技術文章 RR fin war new IT cti

ABAP

ABAP help文檔裏對**LOAD-OF-PROGRAM"的關鍵字是這樣描述的:

This event keyword defines the program constructor of an executable program, a module pool, a function group, or a subroutine pool. The program constructor is an event block whose event is raised by the ABAP-runtime environment when one of the executable programs mentioned above is loaded into the internal session.

以Function group為例,每當一個function group裏的任意一個function module第一次被調用時,對應的ABAP program被加載到internal session裏,同時ABAP運行時拋出LOAD-OF-PROGRAM, 執行應用程序員編寫的事件處理邏輯。

現在我有一個名為ZTOMCAT的function group。其LOAD-OF-PROGRAM就負責彈出調試器。

技術分享圖片

我有兩個report。Report 2的源代碼:

REPORT ZJERRY_RE2.

call FUNCTION ‘ZTEST_FM_1‘.

Report 1:

CALL FUNCTION ‘ZTEST_FM_1‘.

SUBMIT zjerry_re2 AND RETURN.

那麽我執行report1,斷點會觸發一次還是兩次?

答案是兩次。
技術分享圖片

技術分享圖片

LOAD-OF-PROGRAM在這種場景下的行為,ABAP help已經說的很清楚了:

When a program is called using SUBMIT or using a transaction code, a new internal session is opened in every call and the event block is executed once in every call.

每次program通過SUBMIT或者事務碼的方式調用時,會起一個新的internal session,在此新的session裏LOAD-OF-PROGRAM會觸發一次。

下圖也直觀表明了每次調用SUBMIT( calling programs)時會新起一個Internal Session。
技術分享圖片

Tomcat 庫文件的重復加載問題

我的pom.xml裏定義了一個gson的依賴關系,ABAPer可以把其類比成在我的Java代碼裏調用Google提供的gson API。

技術分享圖片
打成war包之後,該庫文件位於WEB-INF/lib文件夾下。
技術分享圖片
那麽如果我有多個Web應用都用到了gson, 則每個應用的WEB-INF\lib文件夾下面都有gson的jar文件。

問題:在運行時,Tomcat只會將一份gson.jar的內容加載到內存麽?

答案是不會。根據Tomcat的官方文檔,Tomcat會為每個Web應用創建一個專屬的ClassLoader實例,每個應用的WEB-INF\lib下的資源,對於其他應用來說不可見,彼此隔離。

技術分享圖片
當然如果想只用一份庫文件,可以把它放到目錄 [tomcat-installation-directory]/common/lib下面。更多細節參考stackoverflow上的討論.

要獲取更多Jerry的原創技術文章,請關註公眾號"汪子熙"或者掃描下面二維碼:

技術分享圖片

技術分享圖片

ABAP function group和Tomcat library重復加載問題