Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我正在将 jOOQ 与 Mysql(使用 maven)一起使用。
我在我的数据库中创建了一个新表,那么如何在不重新生成现有类的情况下更新 jOOQ 的自动生成类?
当我运行时 mvn clean compile,它也会重新创建现有的类
mvn clean compile
jOOQ 不支持“更新”生成的类,因为它不为增量代码生成维护“脏”标志。所以,你所要求的(目前)是不可能的。