使用JHipster,我想创建一个实体。我使用了以下命令行:
yo jhipster:entity author
并输出:
appPath - src/main/webapp
The entity author is being created.
appPath: src/main/webapp
appPath: src/main/webapp
appPath: src/main/webapp
create src\main\java\fr\par\conferences\domain\Author.java
create src\main\java\fr\par\conferences\repository\AuthorRepository.java
create src\main\java\fr\par\conferences\web\rest\AuthorResource.java
create src\main\webapp\views\authors.html
create src\main\webapp\scripts\author\router.js
create src\main\webapp\scripts\author\controller.js
create src\main\webapp\scripts\author\service.js
create src\test\java\fr\par\conferences\web\rest\AuthorResourceTest.java
JHipster创建实体但没有问我关于实体的关系领域。如何迫使JHipster要求它?