Jetty’s start.jar forks a new JVM to run the app if logback module is enabled
Jetty is too smart. If there is any JVM option provided, Jetty will spawn a new JVM instance to do the real work, even if you don’t use “–exec” option in start.ini And jetty’s logback module introduces a JVM option. See here You will see: -Dorg.eclipse.jetty.util.log.class?=org.eclipse.jetty.util.log.Slf4jLog So does it matter? It matters a lot because …
Jetty’s start.jar forks a new JVM to run the app if logback module is enabled Read More »