![java](https://habrastorage.org/r/w120/webt/5a/7f/c4/5a7fc421810ca922341023.png)
Java
- 15 ответов
- 0 вопросов
4
Вклад в тег
@RequestMapping(value = "/some_city/", method = RequestMethod.POST)
public @ResponseBody SomeCity someCity(@RequestParam(value = "somecity", required = true) String somecity) throws Exception {
Gson gson = new Gson();
SomeCity data = gson.fromJson(somecity, SomeCity.class);
return data;
}