Search code examples
javajooq

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

  • 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");