目標: RestTemplate を使用して画像を投稿する
現在、このバリエーションを使用しています
MultiValueMap<String, Object> parts = new
LinkedMultiValueMap<String, Object>();
parts.add("field 1", "value 1");
parts.add("file", new
ClassPathResource("myFile.jpg"));
template.postForLocation("http://example.com/myFileUpload", parts);
代替手段はありますか?base64 でエンコードされた byte[] 配列を含む JSON を POST することは有効な代替手段ですか?