Questions tagged [jdl]

JDL is the Domain Language of the application generator "JHipster". It is used to describe entities and their relations so that JHipster generates code for these entities.

For more info, see https://www.jhipster.tech/jdl/

131 questions
0
votes
1 answer

"Parameter specified as non-null is null" is thrown when trying to reference one JDL entity from another entity in JHipster Kotlin

I'm trying to build a website in JDL Kotlin, but am having a problem with the JDL generated entities and edit forms. I have a JDL entity called Provider, an entity called Plan that needs to reference which provider it belongs to, and a third entity…
0
votes
1 answer

Jhipster - Creating a relationship between JHI_User and another Entity ERROR

I generated a Jhipster configured hereafter (Spring boot / React ). In order to add some additional information to User Registration, I tried to follow this Tip published on Jhipster website :…
itsmarwen
  • 131
  • 1
  • 3
  • 14
0
votes
1 answer

How to run JHipster UAA with docker?

I've generated an application with this JDL deployment { deploymentType docker-compose appsFolders [gateway, uaa] dockerRepositoryName "10.1.10.58:5000" } application { config { baseName uaa applicationType uaa, } } application…
0
votes
0 answers

Jhipster-UML taking too much time to generate jdl file

So after many struggles trying to install the proper and working version of jhipster-uml through github. I've created a microservice app through jhipster command then put a UMLDesigner class diagram file in this format file.uml . now that i run the…
Ayman Erroutabi
  • 183
  • 2
  • 10
0
votes
1 answer

how can i import my file.jh in my jhister app

when i try to import jhipster-jdl.jh in my app, i have this error : Could not find jhipster-jdl.jh, make sure the path is correct. like this
0
votes
2 answers

Jhipster - JDL studio - relationship to User

I want to create an entity (called StudentInfo) that has a one-to-one relationship to the User entity (generated my jhipster). How can I do this using JDL-studio ? Do I just declare a relationship to the User like so : relationship OneToOne { …
ROBlackSnail
  • 501
  • 1
  • 5
  • 20
0
votes
1 answer

Jhipster JDL Is There CI-CD language that can be used in the JDL Like Deployment

I noticed that the generator supports jhipster ci-cd & the jdl supports deployment, but could not find any documentation on whether the jdl supports ci-cd & if it does what the language is. Seems this would be part of the documentation and JDL if…
0
votes
0 answers

Error while using JDL application options: got value 'elasticsearch' for 'search'

I'm testing out jHipster's JDL application options, but I can't get it to work, I think I followed the documentation on https://www.jhipster.tech/jdl/#application_options for the specific error I'm getting: Error: The option's name and value must…
Ernest
  • 962
  • 3
  • 12
  • 28
0
votes
1 answer

CRUd issues with Jhipster relationships

I am importing the following jdl to generate a simple jhipster monolith. I inspected the h2 db after startup and it seems perfect, however when i try to use the ui to create new InventryModel or Inventory entities, the drop downs are not working at…
1977
  • 2,580
  • 6
  • 26
  • 37
0
votes
1 answer

Relationship One-To-Many in JDL

I'm trying to create job table have multi-image in JDL I used to one-to-many relationship but jhipster warnning: WARNING! otherEntityRelationshipName is missing in .jhipster/Attachment.json for relationship { "relationshipName": "job", …
Tài Bùi
  • 3
  • 6
0
votes
0 answers

JDL: Multiple Menu

I trying to create multiple menu category using JDL. In one CategoryItem have parentID. I already created JDL like: microservice * with Category entity CategoryItem{ name String required } relationship ManyToOne{ CategoryItem{parrent} to…
Tài Bùi
  • 3
  • 6
0
votes
1 answer

declaring own datatypes with JDL

I want to declare my own datatype in order to use it in an other entity. JDL doesn't seem to recognize the entities that I already declared. How can I declare my own datatypes? entity Adress{ street String, streetNumber Integer, postCode…
0
votes
1 answer

JHipster Import-jdl Entity generator master.xml and CacheConfiguration not updated

I generated a microservice application using JHipster then I generated a lot of entities by using the JHipster "import-jdl" command. But recently I noticed that after running import-jdl command, newly created changelog files not being reflected on…
Rami Nassar
  • 303
  • 1
  • 4
  • 13
0
votes
1 answer

How to show picture in option using jhipster and angular?

I'm trying to show images in a dropdown selection box. I'm using JHipster and chose Angular as frontend, and while using jdl I used the ImageBlob Field to generate a Photo entity to handle pictures. I have a relation between the Photo and Boxeur…
0
votes
1 answer

Why My jdl file is generating domains with error in code?

Hi I m using JHipster and doing some training in the jdl, so while I generated a entity model from my jdl I got some code scaffolding errors, is this due to an error in my JDL or it is a issue in JHipster generator entity Club{ federation…
1 2 3
8 9