简体   繁体   English

jhipster import-jdl过滤器创建实体过滤器时出错

[英]jhipster import-jdl filter error creating entities filters

i have a project made with Jhipster 4.9, in my linux i have jhipster 4.13.3 我有一个用Jhipster 4.9制作的项目,在我的Linux中,我有jhipster 4.13.3

when i run ' jhipster import-jdl src/model/Model.jdl ' 当我运行' jhipster import-jdl src / model / Model.jdl '

i get this error 我得到这个错误

The jdl is being parsed. 正在解析jdl。 An error has occurred: SyntaxError Error message: Expected "/ ", "angularSuffix", "dto", "entity", "enum", "except", "microservice", "noFluentMethod", "paginate", "relationship", "search", "service", "skipClient", "skipServer", ['\\n'|'\\t'|'\\r'|' 发生错误:SyntaxError错误消息:预期的“ / ”,“ angularSuffix”,“ dto”,“ entity”,“ enum”,“ except”,“ microservice”,“ noFluentMethod”,“ paginate”,“ relationship”, “搜索”,“服务”,“ skipClient”,“ skipServer”,['\\ n'|'\\ t'|'\\ r'|' '| '| | | ], [A-Z_], or end of input but "f" found.* ],[A-Z_]或输入结尾,但找到“ f”。*

This is my Model.jdl 这是我的Model.jdl

/**
 * Generated by JHipster IDE plugin
 */

entity Region {
    regionName String
}

entity Country {
    countryName String
}

// an ignored comment
/** not an ignored comment */
entity Location {
streetAddress String
postalCode String
city String
stateProvince String
}

entity Department {
    departmentName String required
}



  /**
     * Task entity.
     * @author The JHipster team.
    */
    entity Task {
        title String
    description String
}

/**
 * The Employee entity.
 */
entity Employee {
    /**
    * The firstname attribute.
    */
    firstName String
    lastName String
    email String
    phoneNumber String
    hireDate ZonedDateTime
    salary Long
    commissionPct Long
}

entity Job {
    jobTitle String
    minSalary Long
    maxSalary Long
}

entity JobHistory {
    startDate ZonedDateTime
    endDate ZonedDateTime
    language Language
}

enum Language {
    FRENCH, ENGLISH, SPANISH
}

relationship OneToOne {
    Country{region} to Region
}

relationship OneToOne {
    Location{country} to Country
}

relationship OneToOne {
    Department{location} to Location
}

relationship ManyToMany {
    Job{task(title)} to Task{job}
}

// defining multiple OneToMany relationships with comments
relationship OneToMany {
    Employee{job} to Job,
    /**
    * A relationship
    */
    Department{employee} to
    /**
    * Another side of the same relationship
    */
    Employee
}

relationship ManyToOne {
    Employee{manager} to Employee
}

// defining multiple oneToOne relationships
relationship OneToOne {
    JobHistory{job} to Job,
    JobHistory{department} to Department,
    JobHistory{employee} to Employee
}

// Set pagination options
paginate JobHistory, Employee with infinite-scroll
paginate Job with pagination

dto * with mapstruct

filter * except JobHistory,Region
// Set service options to all except few
service all with serviceImpl except Employee, Job

// Set an angular suffix
angularSuffix * with mySuffix

The .jdl show no errors in eclipse. .jdl在Eclipse中未显示任何错误。 I am trying to implement filtering entities. 我正在尝试实现过滤实体。

Anyone can help me. 任何人都可以帮助我。

I updated my project to jhipster 4.13.3 and it seems to work. 我将项目更新为jhipster 4.13.3,它似乎可以正常工作。 but the code is generated with errors, class Location_ , Country_ with references in the code but don't exist anywhere. 但是代码生成时出错,错误代码为Location_,Country_类,其中包含代码中的引用,但在任何地方都不存在。 So i have to create de classes @StaticMetamodel(Employee.class) public class Employee_ 所以我必须创建类@StaticMetamodel(Employee.class)公共类Employee_

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM