我尝试将实体“博客”与一对一关系添加到新鲜的jhipster项目中,但没有结果,jhipster生成器没有将实体“博客”添加到我的项目中
$ yo jhipster:entity blog
The entity blog is being created.
Generating field #1
? Do you want to add a field to your entity? Yes
? What is the name of your field? name
? What is the type of your field? String
? Do you want to add validation rules to your field? No
================= Blog =================
Fields
name (String)
Generating field #2
? Do you want to add a field to your entity? No
================= Blog =================
Fields
name (String)
Generating relationships to other entities
? Do you want to add a relationship to another entity? Yes
? What is the name of the other entity? user
? What is the name of the relationship? user
? What is the type of the relationship? one-to-one
? Is this entity the owner of the relationship? Yes
? When you display this relationship with AngularJS, which field from 'user' do you want to use? id
? Do you want to add any validation rules to this relationship? No
================= Blog =================
Fields
name (String)
Relationships
user (User) one-to-one
Generating relationships to other entities
? Do you want to add a relationship to another entity? No
================= Blog =================
Fields
name (String)
Relationships
user (User) one-to-one
? Do you want to use a Data Transfer Object (DTO)? No, use the entity directly
? Do you want to use separate service class for your business logic? No, the REST controller should use the repository directly
? Do you want pagination on your entity? No
Everything is configured, generating the entity...
$
没有错误信息,没有。 我尝试用JDL添加相同的实体 - 结果相同。
$ yo jhipster:import-jdl jhipster-jdl.jh
The jdl is being imported.
$
文件jhipster-jdl.jh:
entity Blog {
name String
}
relationship OneToOne {
Blog{User} to User
}
ver JHipster Generator v3.4.2
解决此问题 - 进行两步: