- 문제
- 첫 번째 객체의
collectionSalePrice
는null
로 설정되어 있지만, 두 번째 객체에서는List
로 설정 - 데이터 처리 시 NPE를 발생 시킬 가능성이 있음
- 첫 번째 객체의
- 해결 방안
-
collectionSalePrice
를 항상List
로 설정하고, 값이 없으면 빈 배열[]
로 처리 -
JSON 수정:
{ "collectionChartDataList": [ { "collectionName": "collectionName", "collectionSalePrice": [] }, { "collectionName": "collectionName", "collectionSalePrice": [ { "price": 59.75, "cvtDatetime": "2023-03-26T08:08:35" }, { "price": 60.00, "cvtDatetime": "2023-03-26T08:08:45" } ] } ] }
-
- 문제
- 두 개의 객체 모두
collectionName
값이 동일 - 데이터베이스나 클라이언트에서 이 값으로 데이터를 구분하려 한다면, 충돌이 발생할 가능성 존재
- 두 개의 객체 모두
- 해결 방안:
-
id
와 같은 식별할 수 있는 필드를 추가 -
또는
collectionName
을 고유한 값으로 설정 -
JSON 수정:
{ "collectionChartDataList": [ { "collectionId": 1, "collectionName": "collectionName", "collectionSalePrice": [] }, { "collectionId": 2, "collectionName": "collectionName", "collectionSalePrice": [ { "price": 59.75, "cvtDatetime": "2023-03-26T08:08:35" }, { "price": 60.00, "cvtDatetime": "2023-03-26T08:08:45" } ] } ] }
-
[
{
"collectionId": 1,
"collectionName": "collectionName",
"collectionSalePrice": []
},
{
"collectionId": 2,
"collectionName": "collectionName",
"collectionSalePrice": [
{
"price": 59.75,
"cvtDatetime": "2023-03-26T08:08:35"
},
{
"price": 60.00,
"cvtDatetime": "2023-03-26T08:08:45"
}
]
}
]