Skip to content

Instantly share code, notes, and snippets.

@silentsudo
Created January 17, 2017 10:13
Show Gist options
  • Save silentsudo/b6145818ca0008fa43ede5d7beac7907 to your computer and use it in GitHub Desktop.
Save silentsudo/b6145818ca0008fa43ede5d7beac7907 to your computer and use it in GitHub Desktop.
Library jHipster JDL description
entity Author {
name String
details String
}
entity Book {
title String
description String
publication String
}
relationship OneToMany {
Author{book} to Book{author}
}
skipClient for Author
skipClient for Book
service all with serviceImpl
paginate all with infinite-scroll
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment