You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
In DynamicServerConfigurationService the server configuration is fetched by using Spring RestTemplate. In a complex Spring environment using XML and JSON HTTP mappers, the RestTemplate will accept first application/xml then application/json when expected object is of type String. This choice is perhaps not the most appropriate from Spring, but it should be managed inside DynamicServerConfigurationService.
A solution is to use Jackson instead of GSON, in order to fetch configuration by calling restTemplate.getForObject(url, JsonNode.class).