Пример #1
0
  @RequestMapping("/remove/{id}")
  public String removePerson(@PathVariable("id") int id) {

    employeeDAO.deleteById(id);
    return "redirect:/";
  }