There is a legacy application which uses JUL and registers handlers via code. Now I use springboot within the legacy app.
I tried with minimum spring boot dependency which only includes spring-boot-starter and excludes spring-boot-starter-logging; set org.springframework.boot.logging.LoggingSystem to none in application.properties; use either commons-logging or jcl-over-slf4j. And JUL configuration is always cleared when spring boot starts up.
Is there a way to keep JUL configuration no change when spring boot starts up?
The spring boot version is 1.5.20 due to the legacy app is compiled with java7