为什么我的jdl文件生成代码错误的域?

时间:2019-02-06 23:45:36

标签: jhipster jdl

嗨,我正在使用JHipster并在jdl中进行一些培训,

所以当我从jdl生成实体模型时,我遇到了一些代码支架错误,这是由于JDL中的错误还是JHipster生成器中的问题

entity Club{
    federation String,
    nomClub String,
    dateFondation LocalDate
}

entity Boxeur {
    nom String,
    prenom String,
    dateNaissance LocalDate,
    lieuNaissance String,
    dateInscription LocalDate
}

entity Entraineur{
    nom String,
    prenom String,
    dateNaissance LocalDate,
    lieuNaissance String,
    president Boolean
}
enum LieuSeance {
    SALLE,
    STADE,
    MONTAGNE,
    AUTRE
}

entity TypeSeance{
    typeSeance TypeSeance0
}
enum TypeSeance0 {
    COMPETITION,
    SPARRING,
    ENDURANCE,
    STREATCHING,
    TECHNIQUE,
    PHYSIQUE,
    ENTRETIEN,
    AUTRE
}

entity Seance{
    titre String,
    detail String,
    dateSeance LocalDate,
    lieu LieuSeance
}

entity Payement{
    montant Long,
    datePayement LocalDate
}

relationship OneToMany{
    Entraineur{seances(titre)} to Seance{entreneur(nom)},
    Boxeur{versement} to Payement,
    TypeSeance to Seance
}
relationship OneToOne{
   Club{president(nom)} to Entraineur
}
relationship ManyToMany{
    Seance{participants(nom)} to Boxeur{assistes(titre)}
}
paginate all with pagination

dto * with mapstruct

service all with serviceImpl 

错误发生在Seance.Java中,添加和删除参与者的脚手架出现错误,如下图所示

titre and S() are scaffolding error

我在JDL文件中犯了一个错误,所以我遇到了这种错误 谢谢

我在JHipster

中创建了一个问题

1 个答案:

答案 0 :(得分:0)

问题已在新版本中更正 有关更多信息,请访问github问题tracker