前提・実現したいこと
現在、Spring Boot と log4j2 にて、Controllerごとにログの出力先を設定する機能を作成しています。
問題として、プログラム起動時にログファイルを出力してしまうため、${sys:dir-path}というフォルダ内にログを出力してしまいます。
Controllerが呼ばれた時にのみログを出力したいのですが、何か良い方法はありますでしょうか?
よろしくお願いします。
該当のソースコード
xml
1<?xml version="1.0" encoding="UTF-8"?> 2<Configuration status="WARN"> 3 <Properties> 4 <Property name="pattern1">%clr{%d{yyyy-MM-dd HH:mm:ss.SSS}}{faint} %clr{%5p} %style{${sys:PID}}{Magenta} %clr{---}{faint} %clr{[%15.15t]}{faint} %clr{%-40.40c{1.}}{cyan} %clr{:}{faint} %m%n%xwEx</Property> 5 <Property name="pattern2">%d{yyyy-MM-dd HH:mm:ss.SSS} %5p ${sys:PID} --- [%15.15t] %-40.40c{1.} : %m%n%xwEx</Property> 6 <Property name="log-path">./logs/</Property> 7 <Property name="pg-path">${ctx:fileName}/</Property> 8 <Property name="logfile">${date:yyyyMMdd}.log</Property> 9 <Property name="logfile-archive-path">backlog/</Property> 10 <Property name="logfile-archive">%d{yyyyMMdd}-%i.log.zip</Property> 11 </Properties> 12 13 <Appenders> 14 <!-- CONSOLE 設定 --> 15 <Console name="CONSOLE" target="SYSTEM_OUT" follow="true"> 16 <PatternLayout> 17 <pattern>${pattern1}</pattern> 18 </PatternLayout> 19 </Console> 20 21 <!-- ERROR 設定 --> 22 <RollingFile name="ERROR" append="true" fileName="${log-path}${pg-path}${logfile}" 23 filePattern="${log-path}${pg-path}${logfile-archive-path}${logfile-archive}"> 24 <triggeringPolicy class="org.apache.log4j.rolling.FilterBasedTriggeringPolicy"> 25 </triggeringPolicy> 26 <PatternLayout> 27 <pattern>${pattern2}</pattern> 28 </PatternLayout> 29 <Policies> 30 <SizeBasedTriggeringPolicy size="1KB"/> 31 <TimeBasedTriggeringPolicy /> 32 </Policies> 33 <DefaultRolloverStrategy max="12"/> 34 </RollingFile> 35 </Appenders> 36 37 <Loggers> 38 <Root level="trace"> 39 <AppenderRef ref="CONSOLE" level="info"/> 40 <AppenderRef ref="ERROR" level="error"/> 41 </Root> 42 </Loggers> 43 44</Configuration>
java
1import org.slf4j.Logger; 2import org.slf4j.LoggerFactory; 3import org.springframework.stereotype.Controller; 4import org.springframework.ui.Model; 5import org.springframework.web.bind.annotation.RequestMapping; 6import org.springframework.web.bind.annotation.RequestMethod; 7 8@Controller 9@RequestMapping("a") 10public class LogAControloler { 11 12 @RequestMapping(value={"/", ""}, method=RequestMethod.GET) 13 public String index(Model model) { 14 15 // プロパティの設定 16 System.setProperty("dir-path", "logA"); 17 Logger logger = LoggerFactory.getLogger(LogAControloler.class.getName()); 18 logger.error("errorログです"); 19 return "indexA"; 20 } 21} 22
補足情報(FW/ツールのバージョンなど)
Tomcat 8
Java 1.8
Log4j2 2.13
回答1件
あなたの回答
tips
プレビュー
バッドをするには、ログインかつ
こちらの条件を満たす必要があります。
2020/10/18 03:08