17181920212223242526
} @RequestMapping(value="/getJSON/{name}", method = RequestMethod.GET) public @ResponseBody SomeData getJSON(@PathVariable String name) { SomeData result = new SomeData(name, System.currentTimeMillis()); return result; }