-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsample.jdl
47 lines (42 loc) · 824 Bytes
/
sample.jdl
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
application {
config {
baseName filterreactive,
applicationType gateway,
packageName com.poc.filter,
authenticationType jwt,
prodDatabaseType postgresql,
clientFramework angular
devDatabaseType h2Disk
testFrameworks [cypress]
serviceDiscoveryType no
}
entities *
}
entity Customer {
name String
age Integer
distanceTravelled Long
amountSpent BigDecimal
amountSaved Float
amountEarned Double
happyPerson Boolean
dob Instant
createdDate LocalDate
travelDate ZonedDateTime
travelTime Duration
customerType CustomerType
}
enum CustomerType {
MVP, VP
}
entity Address {
street String
city String
state String
zip Long
}
relationship OneToMany {
Customer to Address
}
service all with serviceClass
filter Customer, Address