22
Bahar JSON isteği 406 alıyor (Kabul Edilemez)
bu benim javascript'im: function getWeather() { $.getJSON('getTemperature/' + $('.data option:selected').val(), null, function(data) { alert('Success'); }); } bu benim kontrolörüm: @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 /> Bu hatayı alıyorum: GET http://localhost:8080/web/getTemperature/2 406 (Not Acceptable) …
85
java
javascript
ajax
json
spring