File tree Expand file tree Collapse file tree 3 files changed +4
-1
lines changed
customer-master-data-management-mock/base
src/main/kotlin/com/senacor/lpt/service/creditapplication/customer/master/data/adapter Expand file tree Collapse file tree 3 files changed +4
-1
lines changed Original file line number Diff line number Diff line change 26
26
- " --max-request-journal=1000"
27
27
- " --local-response-templating"
28
28
- " --root-dir=/home/wiremock/storage"
29
+ - " --verbose"
29
30
resources :
30
31
requests :
31
32
cpu : 100m
Original file line number Diff line number Diff line change @@ -7,7 +7,7 @@ metadata:
7
7
spec :
8
8
type : ClusterIP
9
9
selector :
10
- app : customer-master-data-management-service
10
+ app : customer-master-data-management
11
11
ports :
12
12
- protocol : TCP
13
13
port : 9021
Original file line number Diff line number Diff line change 1
1
package com.senacor.lpt.service.creditapplication.customer.master.data.adapter
2
2
3
+ import com.fasterxml.jackson.annotation.JsonFormat
3
4
import java.time.LocalDate
4
5
5
6
data class CustomerMasterData (
6
7
val firstname : String ,
7
8
val lastname : String ,
9
+ @JsonFormat(shape = JsonFormat .Shape .STRING , pattern = " dd-MM-yyyy" )
8
10
val birthday : LocalDate
9
11
)
You can’t perform that action at this time.
0 commit comments