jOOQ does not generate sources

前端 未结 1 1541
南方客
南方客 2021-01-15 01:44

I am trying to include jOOQ into my code, however no code is being generated.

When executing mvn clean generate-sources, no sources are generated. I wan

相关标签:
1条回答
  • 2021-01-15 02:06

    You're using an in-memory database: jdbc:hsqldb:mem:testdb. When the jOOQ code generator starts, it receives a new database that is empty, not the database that you may have created elsewhere.

    0 讨论(0)
提交回复
热议问题