Daily Shaarli

All links of one day in a single page.

May 9, 2020

Vert.x - Why is the log4j configuration not fully applied?

Today's facepalm with Java, the parameters order in which booting an application matters.

java -jar app.jar -Dsomething=property

will not work, but:

java  -Dsomething=property -jar app.jar

works. Note sure about it…