Advertisement
Guest User

Untitled

a guest
Aug 3rd, 2015
162
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.18 KB | None | 0 0
  1. @RequestMapping(value ="/location/{id}", method = RequestMethod.GET)
  2. public @ResponseBody Location getLocationById(@PathVariable("id") long id) {
  3. return locations.findOne(id);
  4. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement