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

ABAP

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

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.html

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

如今我有一個名爲ZTOMCAT的function group。其LOAD-OF-PROGRAM就負責彈出調試器。程序員

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

REPORT ZJERRY_RE2.

call FUNCTION 'ZTEST_FM_1'.

Report 1:apache

CALL FUNCTION 'ZTEST_FM_1'.

SUBMIT zjerry_re2 AND RETURN.

那麼我執行report1,斷點會觸發一次仍是兩次?tomcat

答案是兩次。 session

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

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的原創技術文章,請關注公衆號"汪子熙"或者掃描下面二維碼:

相關文章
相關標籤/搜索