jHipster:如何在 jdl 导入期间仅生成实体

jHipster: how to generate only entities during jdl import

jHipster:如何在 jdl 导入期间仅生成实体

或实体加上 dto 和映射器?

jhipster import-jdl jhipster-jdl.jh

要仅生成实体(并跳过应用程序 JDL 生成),您可以传递 --ignore-application。完整命令如下所示:jhipster import-jdl jhipster-jdl.jh --ignore-application

如果您需要 DTO 和映射器,请将 dto * with mapstruct 添加到 JDL 的底部。 文档中的更多信息:https://jhipster.tech/jdl/

您可以使用 jhipster entity <entityName> --[options],其中选项为:

  • --skip-server - 这将跳过服务器端代码,只生成客户端代码。
  • --skip-client - 这将跳过客户端代码,只生成服务器端代码。

检查:https://www.jhipster.tech/creating-an-entity/