22
Весняний запит JSON на отримання 406 (не прийнятний)
це мій javascript: function getWeather() { $.getJSON('getTemperature/' + $('.data option:selected').val(), null, function(data) { alert('Success'); }); } це мій контролер: @RequestMapping(value="/getTemperature/{id}", headers="Accept=*/*", method = RequestMethod.GET) @ResponseBody public Weather getTemparature(@PathVariable("id") Integer id){ Weather weather = weatherService.getCurrentWeather(id); return weather; } spring-servlet.xml <context:annotation-config /> <tx:annotation-driven /> Отримання цієї помилки: GET http://localhost:8080/web/getTemperature/2 406 (Not Acceptable) …
85
java
javascript
ajax
json
spring