diff options
author | Tyler Ferrari <69283684+Sowgro@users.noreply.github.com> | 2025-03-02 11:48:10 -0500 |
---|---|---|
committer | GitHub <noreply@github.com> | 2025-03-02 11:48:10 -0500 |
commit | d752a75a8496f0c5abe3d8ee41af95ae5b7875c3 (patch) | |
tree | 6034c61759bd494e6d9c24cf45e8ba462cb522cc /ufund-api | |
parent | c02c47efcb00782feb1461534923023a711d4f15 (diff) | |
download | JellySolutions-d752a75a8496f0c5abe3d8ee41af95ae5b7875c3.tar.gz JellySolutions-d752a75a8496f0c5abe3d8ee41af95ae5b7875c3.tar.bz2 JellySolutions-d752a75a8496f0c5abe3d8ee41af95ae5b7875c3.zip |
Configure json parser to only serialize annotated fields
Diffstat (limited to 'ufund-api')
-rw-r--r-- | ufund-api/src/main/resources/application.properties | 8 |
1 files changed, 7 insertions, 1 deletions
diff --git a/ufund-api/src/main/resources/application.properties b/ufund-api/src/main/resources/application.properties index 254ac64..fa5d084 100644 --- a/ufund-api/src/main/resources/application.properties +++ b/ufund-api/src/main/resources/application.properties @@ -2,4 +2,10 @@ server.error.include-message=always cupboard.file=ufund-api/data/cupboard.json -users.file=ufund-api/data/users.json
\ No newline at end of file +users.file=ufund-api/data/users.json + +spring.jackson.mapper.auto-detect-getters=false +spring.jackson.mapper.auto-detect-setters=false +spring.jackson.mapper.auto-detect-is-getters=false +spring.jackson.mapper.auto-detect-creators=false +spring.jackson.mapper.auto-detect-fields=false
\ No newline at end of file |