My java spring boot app is sending JSON that includes a multi-part file, which I need to parse(using angular) in order to target 'picture" inside of "fileupload" when GET is called.
Here is the JSON coming to UI when GET is called:
{
"id": 1,
"name": John,
"fileupload": "MemberFile(id=1, fileId=1, fileName="sample.png", picture=[-119, 80, 78, 71, 13,..., -126])"
}
Any help would be greatly appreciated. Let me know if more details are needed. Thanks