我使用帮助工具创建了实体,并手动修改了实体。
随着时间的流逝,我需要添加更多字段。
我运行jhipster entity Download
,并按照说明进行操作。此后,生成器说出冲突并提出完全替换许多文件的提示:
conflict .jhipster/Download.json
? Overwrite .jhipster/Download.json? show the differences between the old and the new
应该这样吗? 然后我不明白什么代码包含下一个注释行:
@CreatedBy
@ManyToOne
@JsonIgnoreProperties("downloads")
private User user;
// jhipster-needle-entity-add-field - JHipster will add fields here, do not remove
public UUID getId() {
return id;
}
答案 0 :(得分:1)
要在JHipster实体中添加字段,唯一实用的方法是重新生成该实体并覆盖现有文件。
JHipster当前未使用添加的针(我在代码中找不到对它的引用),并且仅由于用户在本期https://github.com/jhipster/generator-jhipster/issues/6246中请求它而存在。