grails 3 とのログバインディングとして Log4j2 を使用したいと考えています。
私がこれまでに把握できることから。さまざまなロガーを使用する下位の依存関係が多数あるため、SLF4J API を使用する必要があります。次に、grails / groovy / spring が SLF4J API を Logback バインディングにリダイレクトするのではなく、それぞれを Log4j2 バインディングにリダイレクトする必要があります。
grails 3 は Logback バインディングを使用するため、build.gradle の各依存関係を調べて、Logback バインディングを除外し、Log4j2 バインディングを含めることを計画しています。これは機能しますか?更新: はい
Log4j2 API を SLF4j API にブリッジする必要もありますか? そのために必要な依存関係は何ですか?更新: 以下を参照してください。
最後に、grails 3 の logback.groovy 構成を捨てて、log4j2 構成の 1 つを src/main/resources に置く必要があると思います。更新: はい
これが判明したら更新を投稿しますが、誰かが以前にこれを行ったことがあるに違いありません。
2016 年 3 月 18 日更新:
これは非常に簡単であることがわかりました。grails 3 プロジェクトで「./gradlew 依存関係」を実行して、どの依存関係が Logback バインディング/実装 (グループ:「ch.qos.logback」、モジュール:「logback-classic」) に引っ張られているかを確認しました。
まず、「grails create-app testit」コマンドで生成されるデフォルトの build.gradle を次に示します。
buildscript {
ext {
grailsVersion = project.grailsVersion
}
repositories {
mavenLocal()
maven { url "https://repo.grails.org/grails/core" }
}
dependencies {
classpath "org.grails:grails-gradle-plugin:$grailsVersion"
classpath "com.bertramlabs.plugins:asset-pipeline-gradle:2.5.0"
classpath "org.grails.plugins:hibernate4:5.0.2"
}
}
version "0.1"
group "testit"
apply plugin:"eclipse"
apply plugin:"idea"
apply plugin:"war"
apply plugin:"org.grails.grails-web"
apply plugin:"org.grails.grails-gsp"
apply plugin:"asset-pipeline"
ext {
grailsVersion = project.grailsVersion
gradleWrapperVersion = project.gradleWrapperVersion
}
repositories {
mavenLocal()
maven { url "https://repo.grails.org/grails/core" }
}
dependencyManagement {
imports {
mavenBom "org.grails:grails-bom:$grailsVersion"
}
applyMavenExclusions false
}
dependencies {
compile "org.springframework.boot:spring-boot-starter-logging"
compile "org.springframework.boot:spring-boot-autoconfigure"
compile "org.grails:grails-core"
compile "org.springframework.boot:spring-boot-starter-actuator"
compile "org.springframework.boot:spring-boot-starter-tomcat"
compile "org.grails:grails-dependencies"
compile "org.grails:grails-web-boot"
compile "org.grails.plugins:cache"
compile "org.grails.plugins:scaffolding"
compile "org.grails.plugins:hibernate4"
compile "org.hibernate:hibernate-ehcache"
console "org.grails:grails-console"
profile "org.grails.profiles:web:3.1.4"
runtime "org.grails.plugins:asset-pipeline"
runtime "com.h2database:h2"
testCompile "org.grails:grails-plugin-testing"
testCompile "org.grails.plugins:geb"
testRuntime "org.seleniumhq.selenium:selenium-htmlunit-driver:2.47.1"
testRuntime "net.sourceforge.htmlunit:htmlunit:2.18"
}
task wrapper(type: Wrapper) {
gradleVersion = gradleWrapperVersion
}
assets {
minifyJs = true
minifyCss = true
}
依存関係レポートは、それらが 2 つの依存関係によって取り込まれていることを示しました。
compile "org.springframework.boot:spring-boot-starter-logging"
と
compile "org.springframework.boot:spring-boot-starter-actuator"
そのため、build.gradle の依存関係セクションにいくつかの変更を加えるだけで済みました。
dependencies {
// commented out the original way using Logback
//compile "org.springframework.boot:spring-boot-starter-logging"
// added the new way using Log4j2, yes, spring makes it easy
compile "org.springframework.boot:spring-boot-starter-log4j2"
// changed spring-boot-autoconfigure so that it would not
// pull in the logback binding/implementation
compile ('org.springframework.boot:spring-boot-autoconfigure') {
exclude group: 'ch.qos.logback', module: 'logback-classic'
}
// and finally, added the log4j2 binding/implementation
compile "org.apache.logging.log4j:log4j-api:2.5"
compile "org.apache.logging.log4j:log4j-core:2.5"
// the rest is unchanged
compile "org.grails:grails-core"
compile "org.springframework.boot:spring-boot-starter-actuator"
compile "org.springframework.boot:spring-boot-starter-tomcat"
compile "org.grails:grails-dependencies"
compile "org.grails:grails-web-boot"
compile "org.grails.plugins:cache"
compile "org.grails.plugins:scaffolding"
compile "org.grails.plugins:hibernate4"
compile "org.hibernate:hibernate-ehcache"
console "org.grails:grails-console"
profile "org.grails.profiles:web:3.1.4"
runtime "org.grails.plugins:asset-pipeline"
runtime "com.h2database:h2"
testCompile "org.grails:grails-plugin-testing"
testCompile "org.grails.plugins:geb"
testRuntime "org.seleniumhq.selenium:selenium-htmlunit-driver:2.47.1"
testRuntime "net.sourceforge.htmlunit:htmlunit:2.18"
}
src/main/resources に、log4j2.xml を追加しました。
Groovy コードでは、以下を使用しました。
import org.apache.logging.log4j.Logger
import org.apache.logging.log4j.LogManager
import org.apache.logging.log4j.ThreadContext
private static final Logger log = LogManager.getLogger(getClass())
log.info('Hello World')
また、頻繁に使用されるクラスのコンストラクターに ThreadContext ステートメントを配置します。
それだけでした。現在、構成の変更時にログ メッセージを失わない、高速な非同期ログを実行しています。