Não sei onde estou errando
@RequestMapping("listarContas")
public ModelAndView listaContas() {
//ContaDAO contas = new ContaDAO();
List<Conta> lista = new ArrayList<Conta>(); // contas.lista();
ModelAndView mv = new ModelAndView("/conta/lista");
mv.addObject("contas", lista);
return mv;
}
Quando chamo a URL http://localhost:8080/contas/listarContas da 404`
HTTP Status 404 – Not Found
Type Status Report
Message /contas/WEB-INF/views/listarContas.jsp
Description The origin server did not find a current representation for the target resource or is not willing to disclose that one exists.