I have a Spring Boot application trying to access a REST web service with RestTemplate.
The code in the client is:
The code in the controller is:
The problem is that i am getting the exception
Exception in
thread "main" org.springframework.web.client.HttpServerErrorException$InternalServerError: 500 : [{"timestamp":"2020-08-25T19:30:13.149+00:00","status":500,"error":"Internal Server Error","message":"","path":"/resultSet/com.paperless.Select_Conn@4044fb95"}]
Digging in the debugger, it appears that the program is trying to do some JSON mapping, but that is just something I have noticed. I am an experienced
Java developer, but I am learning how to program REST clients. I have spend the last two days browsing the net without success.