I'm restricted to use Tomcat 8 and I need to deploy several spring boot based web applications on the same Tomcat.
I'm trying to avoid building the artifact with it's own logging configuration included inside the war file.
By using the system property -Dlogging.conf it's possible to specify the logback.xml file for one application. Adding -Dlogging.conf in setenv.sh would however point the same logging configuration for every webapp deployed in Tomcat.
Is there a smart way to handle external logging configurations using Tomcat?