- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我是新来的。我正在尝试使用 JHaspter 创建一个新的应用程序。
我使用了“yo jhipster”命令来生成应用程序。
我已经使用 JDL studio 来开发我的实体,但是,当我将 JDL 与“yo jhipster:import-jdl model.jdl”一起使用时,我收到错误 - 但错误消息没有提供任何关于什么是的线索导致错误。
我看到的错误消息和 JDL 文件的内容如下。请让我知道如何调试这个。请注意,我对 jhipster 和 StackOverflow 来说都是新手。
JDL 文件::---->>>>>>
entity LocationGeofenceComponent{
id Long,
locationID Long,
geoCoordinate String
}
entity Location {
id Long,
streetAddress String,
postalCode String,
city String,
stateProvince String,
countryID String
}
entity FulfillmentProvider{
id Long,
providerName String
}
entity Region {
id Long,
regionName String
}
entity Country {
id Long,
countryName String
}
entity Department {
departmentName String required
}
entity Device {
id Long,
deviceMACAddress String,
deviceID Long,
deviceKey String,
provisionDate ZonedDateTime,
lastHeartbeat ZonedDateTime,
status String,
model String
}
entity Product {
id Long,
productName String,
productBC String,
productID String,
productWidthMM Integer,
productHeightMM Integer,
productDepthMM Integer,
productNettWeightGrams Double,
productNettVolumeMM3 Double,
productGrossWeightGrams Double,
productGrossVolumeMM3 Double,
productDisplayName String
}
entity ProductPrice {
id Long,
productPriceEffectiveeStart ZonedDateTime,
productPriceEffectiveEnd ZonedDateTime,
productPrice Double,
productDefaultPrice Double
}
entity Offer {
id Long,
offerPriceEffectiveStart ZonedDateTime,
offerPriceEffectiveEnd ZonedDateTime,
offerProductPrice Double
}
entity Brand {
id Long,
brandName String
}
entity User {
id Long,
userName String,
userHandle String,
userFBProfile String
}
entity Employee {
id Long,
firstName String,
lastName String,
email String,
phoneNumber String,
title String,
adminOwnerID Long
}
entity PurchaseOrder {
id Long,
PurchaseOrderProductID Long,
PurchaseOrderProductQty Long
}
entity FulfillmentProviderUserAccount{
id Long,
username String,
otherInfo String,
profileID String
}
entity SocialMediaIdentity{
id Long,
provider String,
pricipal String,
profileName String,
profileInfo Blob
}
entity Bundle{
id Long
}
entity Heartbeat{
id Long,
time ZonedDateTime
}
enum Language {
FRENCH, ENGLISH, SPANISH
}
relationship OneToOne {
Department{location} to Location,
Device{activeLocation} to Location
}
relationship ManyToMany {
FulfillmentProvider to Product,
PurchaseOrder to Product,
PurchaseOrder to Bundle,
PurchaseOrder to Offer,
Region to LocationGeofenceComponent
}
// defining multiple OneToMany relationships with comments
relationship OneToMany {
User{device} to Device,
FulfillmentProvider to FulfillmentProviderUserAccount,
User to FulfillmentProviderUserAccount,
Location to LocationGeofenceComponent,
Department{employee} to Employee,
Device{fulfillmentLocation} to Location,
Device to Heartbeat,
Device to PurchaseOrder,
Country to Region,
User to SocialMediaIdentity,
FulfillmentProvider to SocialMediaIdentity
}
relationship ManyToOne {
Device to User,
Device to Product,
PurchaseOrder to User,
Product to Brand,
Offer to Product,
Bundle to Product,
Offer to Bundle,
Location to Country
}
// defining multiple oneToOne relationships
//relationship OneToOne {
//}
// Set service options to all except few
//service all with serviceImpl except Employee, Job
// Set an angular suffix
angularSuffix * with sxnapp
我看到的错误消息 ----->>>>>>
The jdl is being parsed.
{ name: 'NullPointerException',
message: 'The type, and at least one injected field must be passed.',
prototype:
Error
at new buildException (/Users/anuruddhak2/MyStuff/BackedUp/code/EclipseWS/sxnapp/node_modules/jhipster-core/lib/exceptions/exception_factory.js:43:25)
at new JDLRelationship (/Users/anuruddhak2/MyStuff/BackedUp/code/EclipseWS/sxnapp/node_modules/jhipster-core/lib/core/jdl_relationship.js:16:13)
at fillAssociations (/Users/anuruddhak2/MyStuff/BackedUp/code/EclipseWS/sxnapp/node_modules/jhipster-core/lib/parser/jdl_parser.js:158:31)
at Object.parse [as convertToJDL] (/Users/anuruddhak2/MyStuff/BackedUp/code/EclipseWS/sxnapp/node_modules/jhipster-core/lib/parser/jdl_parser.js:41:3)
at constructor.parseJDL (/Users/anuruddhak2/MyStuff/BackedUp/code/EclipseWS/sxnapp/node_modules/generator-jhipster/generators/import-jdl/index.js:57:41)
at Object.<anonymous> (/Users/anuruddhak2/MyStuff/BackedUp/code/EclipseWS/sxnapp/node_modules/yeoman-generator/lib/base.js:439:23)
at /Users/anuruddhak2/MyStuff/BackedUp/code/EclipseWS/sxnapp/node_modules/run-async/index.js:25:25
at /Users/anuruddhak2/MyStuff/BackedUp/code/EclipseWS/sxnapp/node_modules/run-async/index.js:24:19
at /Users/anuruddhak2/MyStuff/BackedUp/code/EclipseWS/sxnapp/node_modules/yeoman-generator/lib/base.js:440:9
at runCallback (timers.js:651:20) }
Error jhipster:import-jdl ./src/model/Model.jdl
ERROR!
Error while parsing entities from JDL
最佳答案
调整你的人际关系。我不确定您的数据是如何配置的,但类似于下面的内容。文档 https://jhipster.github.io/jdl/提供了更好的解释。
relationship ManyToOne {
Device{product} to Product{device},
PurchaseOrder{user} to User{purchaseorder},
Product{brand} to Brand{product},
Offer{product} to Product{offer},
Bundle{product} to Product{bundler},
Offer{bundle} to Bundle{offer},
Location{country} to Country{location}
}
不需要提供默认的“ID”列。希望对您有帮助
关于java - 从 JDL 文件添加 jHipster 实体时出错,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/42804191/
我已经根据此链接安装了开箱即用的监控: http://www.jhipster.tech/monitoring/ 当我开始时: docker-compose up -d 一切都开始了,但 Elasta
我想将克隆的 ng-jhipster 项目配置为生成的 JHipster 应用程序的依赖项。 我正在使用以下版本(来自 jhipster 信息): git version 2.15.0 node:
最近,我一直在尝试为 JHipster 实现一个蓝图。我决定覆盖实体和实体服务器子生成器。每个子生成器都有多个阶段,我可以选择/完全覆盖/部分覆盖/不覆盖/。这些阶段是: /initializing(
在 Spring Boot 中,可以在 application.properties 文件中定义应用程序属性。例如,Rest 的前缀可以定义为 spring.data.rest.basePath=ap
是否可以为组织定制/扩展 JHipster? 我的意思是有一个本地版本,可以创建一些具有特定于组织的功能的项目?例如,使用自定义身份验证方案(仍然依赖于 Spring 安全性)、使用自定义样式(颜色、
我计划创建一个微服务应用程序,其中包含用于处理数据的专用服务(主要是基于 Mongodb 的服务)。我想知道是否有一种方法可以让我的其他微服务能够与此服务进行通信以利用共享数据。 JHipster A
我已经使用 yarn 安装了 jhipster-generator 版本 5.1.0。 今天,我需要卸载这个版本,以便从版本 5.1.0 降级到版本 5.0.1。 尝试时: yarn global r
我第一次尝试安装 jhipster 并且在设置方面已经出现问题:o 我正在按照“使用 Yarn 本地安装”(使用 Angular)的“安装 JHipster”页面上的步骤操作,该页面工作正常,但现在继
我在src/main/webapp/dist/img下有一些图片 我可以使用相对路径从我的 html 模板访问这些文件: 如果我将文件移动到子文件夹,我必须更新所有路径。 在 JHi
假设只有管理员可以创建新用户。 在管理 > 用户管理中有一个“创建新用户”按钮,但目前没有用。管理员无法设置密码和激活新用户。 我找到的唯一方法是: 退出 在主页上注册一个新帐户 以管理员身份再次登录
我正在尝试使用以下命令安装旧版本的 jhipster: sudo npm install -g generator-jhipster@3.2 或者 yarn global add generator-
有什么方法可以阻止 Jhipster 在生成后提交到我的本地存储库? 如果我导入新的 . jdl 或强制重新生成,Jhipster 会在未经我许可的情况下自动在我的本地存储库中提交新更改。请就此提出建
本文档中的“启用此功能时”是什么意思http://www.jhipster.tech/entities-filtering/引用? 我的 jdl 文件没问题(感谢最近的实现:https://githu
抱歉,如果这不是问这些问题的地方。但我只想知道是否... JHipster 可以去大规模应用吗? 是否可以最大限度地减少代码的生成,尤其是 UI 部分? 我可以扩展一些已经生成的 RestContro
我试图在我的自定义蓝图中覆盖模板 Entity.java.ejs 以添加一些额外的功能。不幸的是,如果生成实体,JHipster 使用其默认值。我不想覆盖整个写作。是否有可能仅覆盖某些模板并为其余部分
当我尝试在 jhipster 上创建一个新实体时,如果我选择添加一个类型枚举的字段,我会遇到这个问题: The entity Produit is being created. The entity
有人可以发布带有 angular 2 的 Jhipster 4.0 入门指南吗? 我不在乎它是否被释放。我只想用github上的最新代码生成代码并继续。 谢谢。 最佳答案 更新 - Deepu 在 g
我们使用了 jhipster 的微服务架构,生成了三个应用 哇, 微服务, 网关。 然后在服务器上运行 uaa 和 jhipster 注册表,我们还有一些全栈开发人员 希望同时开发网关和微服务的人。
在我们的项目中,我们使用域模型文档。一个文档可能有多个标题,所以根据我的 JPA 知识,我会像这样对 Document 实体进行建模: @Entity public class Document {
我需要复制一个 jhipster 项目。自从我创建了这个项目以来,我已经更新了 jhipster 版本。我想用第一个项目的相同 jhipster 版本复制项目。 我如何知道我的第一个应用程序使用的是哪
我是一名优秀的程序员,十分优秀!