简体   繁体   中英

How to read Logback configuration file from path outside the war file?

I have a requirement where I want to place all logback configuration outside the war file. Presently I have placed my configuration file (logback.xml) on the classpath. I am using the JBOSS EAP web application server, kindly suggest how to achieve the same.

Go into the jboss startup/run script and add this option:

java -Dlogback.configurationFile=/path/to/config.xml chapters.configuration.MyApp1

see more at http://logback.qos.ch/manual/configuration.html

You could also use -Dlogging.config=/path/to/logback.xml

This is really handy with java based microservices to provide logging XML externally.

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM