Please advice on where can I find the lib in order to use the shorter expression of System.out.println() and where should I place that lib.
System.out.println()
Using System.out.println() is bad practice (better use logging framework) -> you should not have many occurences in your code base. Using another method to simply shorten it does not seem a good option.