Skip to content

Latest commit

 

History

History
15 lines (12 loc) · 345 Bytes

File metadata and controls

15 lines (12 loc) · 345 Bytes

What we will do:

Useful Snippets

    @RequestMapping(value = "/rest/todos/{id}", method = RequestMethod.GET)
    public Todo retrieveTodo(@PathVariable("id") int id) {
        return service.retrieveTodo(id);
    }

Files List