gpt4 book ai didi

jhipster - 在 jhipster 上创建新实体时无法选择类型枚举

转载 作者:行者123 更新时间:2023-12-04 09:53:13 28 4
gpt4 key购买 nike

当我尝试在 jhipster 上创建一个新实体时,如果我选择添加一个类型枚举的字段,我会遇到这个问题:

The entity Produit is being created.
The entity Produit is being created.

Generating field #1

? Do you want to add a field to your entity? Yes
? What is the name of your field? categorie
? What is the type of your field? Enumeration (Java enum type)
? Do you want to add validation rules to your field? (y/N) "

我找不到“您的枚举的类名是什么?”的问题。

我在 Windows 10 上使用 openjdk 11.0.7,节点 v12.16.3

最佳答案

这很可能是 JHipster 6.9.0 的回归,我已经能够在 6.9.0 中重现它,而它在 6.8.0 中运行良好。

你应该在github上报告这个问题; https://github.com/jhipster/generator-jhipster/issues

作为解决方法,您可以使用 npm install -g generator-jhipster@6.8.0 安装 6.8.0并从一个空目录开始一个新项目,因为 jhipster 6.9.0 已经本地安装在您当前的项目目录中。

或者你可以使用 JDL,我在 6.9.0 中测试过,它工作正常,创建一个 entities.jdl文件如下(见 https://www.jhipster.tech/jdl/),然后用 jhipster import-jdl entities.jdl 导入它

enum Categorie {
ONE, TWO
}


entity Produit {
categorie Categorie
}

关于jhipster - 在 jhipster 上创建新实体时无法选择类型枚举,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/61985048/

28 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com