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:
我假设您在 Spring 内部使用 jOOQ,如果是这样,请将以下行放入您的 application.properties 中。它关闭了当天的提示和徽标
logging.level.org.jooq.Constants=off
I assume you are using jOOQ inside of Spring, and if so put the following line into your application.properties. It turns the tip of the day and the logo off
发布评论
评论(2)
通过查看 源代码,您可以通过将系统属性
org.jooq.no-tips
定义为true
来禁用它,例如在命令上行、属性文件或代码中:As you can see by looking at the source code, you can disable it by defining the system property
org.jooq.no-tips
totrue
, for example on the command line, in a properties file, or in your code:我假设您在 Spring 内部使用 jOOQ,如果是这样,请将以下行放入您的
application.properties
中。它关闭了当天的提示和徽标I assume you are using jOOQ inside of Spring, and if so put the following line into your
application.properties
. It turns the tip of the day and the logo off