'Disable Jooq tip of the day

Is there any way to disable jooQ from printing the tip of the day?

enter image description here



Solution 1:[1]

As you can see by looking at the source code, you can disable it by defining the system property org.jooq.no-tips to true, for example on the command line, in a properties file, or in your code:

System.setProperty("org.jooq.no-tips", "true");

Sources

This article follows the attribution requirements of Stack Overflow and is licensed under CC BY-SA 3.0.

Source: Stack Overflow

Solution Source
Solution 1 Jens Bannmann