差異處

這裏顯示兩個版本的差異處。

連向這個比對檢視

Both sides previous revision 前次修改
下次修改
前次修改
java:log4j2:appenders [2022/04/10 18:38]
tony
java:log4j2:appenders [2023/06/25 09:48] (目前版本)
行 41: 行 41:
   * **appender.logfile.strategy.max**:​ 即index最大值設定。有max就會有min,min是用來指定最小index,如果你不喜歡從1-3,喜歡從2-3的話,那min就設2。   * **appender.logfile.strategy.max**:​ 即index最大值設定。有max就會有min,min是用來指定最小index,如果你不喜歡從1-3,喜歡從2-3的話,那min就設2。
 ===== RollingFileAppender with Size, Time and File Count conditions ===== ===== RollingFileAppender with Size, Time and File Count conditions =====
-這個是基於前一種RollingFileAppender多增加以時間為滾動條件的設定方式。舉例來說當到隔天的00:​00時我想產生新的log file就會用到這個條件。在log4j1時,要做到這個需求,需要引入另外一個支援TimeAndSizeRollingAppender的library;而在logj2中,則可直接透過TimeBasedTriggeringPolicy做到這個需求。除此之外,如果要做到最大檔案數量控制的話,要多使用Delete action的特性 +這個是基於前一種RollingFileAppender多增加以時間為滾動條件的設定方式,但由於篇幅較多直接參考[[java:​log4j2:​timeandsizerollingappender|link]]內容
-<code properties>​+
  
-</​code>​ 
 ===== Reference ===== ===== Reference =====
   * [[https://​logging.apache.org/​log4j/​2.x/​manual/​appenders.html|官方Appender設定介紹]]   * [[https://​logging.apache.org/​log4j/​2.x/​manual/​appenders.html|官方Appender設定介紹]]
   * [[https://​logging.apache.org/​log4j/​2.x/​manual/​layouts.html|官方Layout設定介紹]]   * [[https://​logging.apache.org/​log4j/​2.x/​manual/​layouts.html|官方Layout設定介紹]]
-  * [[https://​www.cnblogs.com/​yeyang/​p/​7944899.html|Log4j2中RollingFile的文件滚动更新机制]] 
  
 =====    ===== =====    =====