有什么方法可以禁止 jooQ 打印每日提示吗?
通过查看源代码可以看到,您可以通过将系统属性
org.jooq.no-tips
true
System.setProperty("org.jooq.no-tips", "true");
我假设您在 Spring 中使用 jOOQ,如果是这样,请将以下行放入您的
application.properties
logging.level.org.jooq.Constants=off