我是本教程的第4步:http://www.jooq.org/doc/3.3/manual/getting-started/tutorials/jooq-in-7-steps/jooq-in-7-steps-step4/
我在步骤3中生成了文件,并将它们放在我的Java项目中的src目录中,但似乎集成开发环境找不到它:


发布于 2016-07-05 15:37:33
如果您不想每次都重复your workaround中提到的步骤,那么您可能应该更改您的jOOQ代码生成配置,以便在所需的位置生成类:
<configuration>
...
<generator>
...
<target>
<!-- use the appropriate location here -->
<directory>src/main/java</directory>
...
</target>
</generator>
</configuration>发布于 2016-07-05 02:43:40
将项目目录移动到src/main/java.
https://stackoverflow.com/questions/38189061
复制相似问题