【发布时间】:2018-06-29 01:51:16
【问题描述】:
我有一个使用 Jhipster 4.9 制作的项目,在我的 linux 中我有 jhipster 4.13.3
当我运行'jhipster import-jdl src/model/Model.jdl'
我得到这个错误
正在解析 jdl。 发生了错误: 语法错误错误 信息: 预期“/”、“angularSuffix”、“dto”、“entity”、“enum”、“except”、“microservice”、“noFluentMethod”、“paginate”、“relationship”、“search”、“服务”、“skipClient”、“skipServer”、['\n'|'\t'|'\r'|' '| | ]、[A-Z_] 或输入结束但找到“f”。*
这是我的 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
.jdl 在 Eclipse 中没有显示错误。 我正在尝试实现过滤实体。
任何人都可以帮助我。
【问题讨论】:
-
您是否尝试过调试选项来获取更多信息?
'jhipster import-jdl src/model/Model.jdl --debug -
感谢您的回答,我尝试了调试选项,但没有给我更多信息。正在解析 jdl。发生错误:SyntaxError 错误消息:预期的“/*”、“angularSuffix”、“dto”、“entity”、“enum”、“except”、“microservice”、“noFluentMethod”、“paginate”、“relationship” , "搜索", "服务", "skipClient", "skipServer", ['\n'|'\t'|'\r'|' '| | ]、[A-Z_] 或输入结束但找到“f”。位置:在 l.113。
-
我已经使用 JHipster 4.13.3 成功导入了您的 JDL,它也可以在 start.jhipster.tech/jdl-studio 中使用,所以我怀疑您没有使用 4.13.3 您可以通过在项目目录中运行
jhipster --version来检查?也许你只在全局而不是本地安装了它。 -
是的,谢谢你这样做了