0
1

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 5 years have passed since last update.

サーバアプリケーション終了時にlogbackのログが出力されない

Last updated at Posted at 2018-09-02

背景
システムリプレースに伴い各種プラグインのバージョンを最新化
動作確認中にシステム終了時のログが出力されていないことに気付く。

構成
java9、Tomcat9、logback+slf4j、Springframework

発生の要因
logbackのバージョンを1.0.13から1.2.3への変更

発生箇所
javax.servlet.ServletContextListener#contextDestroyedをimplementsしたリスナークラスでシステム終了時にログを出していた。

対処1
logbackコンテキストの停止
logbackのサイトに従いコンテキストの停止を追加
https://logback.qos.ch/manual/configuration_ja.html#stopContext

しかし、これだけでは解決せず。

対処2
web.xmlへlogbackDisableServletContainerInitializerの追加
日本語訳のページには無かったが英語のページに答えが有った
https://logback.qos.ch/manual/configuration.html#webShutdownHook

対処2の設定を追加したら無事ログが出力されるようになった。

0
1
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
0
1

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?