Skip to content

Commit

Permalink
fix: fixing missing dto for native reflection
Browse files Browse the repository at this point in the history
  • Loading branch information
paulushcgcj committed Aug 12, 2024
1 parent dcb2551 commit 6c4c7c6
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -37,6 +37,7 @@
import ca.bc.gov.app.dto.client.ClientSubmissionDto;
import ca.bc.gov.app.dto.client.ClientValueTextDto;
import ca.bc.gov.app.dto.client.CodeNameDto;
import ca.bc.gov.app.dto.client.MatchResult;
import ca.bc.gov.app.dto.legacy.AddressSearchDto;
import ca.bc.gov.app.dto.legacy.ContactSearchDto;
import ca.bc.gov.app.dto.legacy.ForestClientDto;
Expand Down Expand Up @@ -121,7 +122,8 @@
Feature.class,
FeatureProperties.class,
Geometry.class,
OpenData.class
OpenData.class,
MatchResult.class
})
public class GlobalServiceConfiguration {

Expand Down
3 changes: 3 additions & 0 deletions backend/src/main/resources/application.yml
Original file line number Diff line number Diff line change
Expand Up @@ -48,6 +48,9 @@ spring:
whitelisted-mdc-keys:
- X-TRACE-ID
- X-USER
jackson:
serialization:
FAIL_ON_EMPTY_BEANS: false

management:
enable-native-support: true
Expand Down

0 comments on commit 6c4c7c6

Please sign in to comment.