Ejemplo n.º 1
0
  @RequestMapping(value = "/deleteLesson/{id}")
  public String deleteLesson(@PathVariable int id, Model model) {
    js.deleteLesson(id);

    model.addAttribute("entries", js.getJournalEntryList());

    return "journal/listJournal";
  }