Posts by user2424634 • 11 points
2 posts
-
1
votes1
answer49
viewsQ: Building a Rest api to recover data from a base using spring batch
I am trying to build a Rest api to recover data from a table using spring batch. Below my service Rest: @RequestMapping(method = RequestMethod.GET, produces = MediaType.APPLICATION_JSON_VALUE +…
-
0
votes0
answers84
viewsQ: Error making a POST request with Springboot
I have the code below: String url = new StringBuilder().append("https://...").toString(); Map<String, Map<String, String>> body = buildBotBody(email,message);…