protected void doPost(HttpServletRequest request, HttpServletResponse response) throws ServletException, IOException {
String nome = request.getParameter("nome");
String sinopse = request.getParameter("sinopse");
String dataLancamento = request.getParameter("dataLancamento");
Filme filme = new Filme();
filme.setNome(nome);
filme.setSinopse(sinopse);
SimpleDateFormat sdf = new SimpleDateFormat("dd/MM/yyyy");
try {
filme.setDataLancamento(sdf.parse(dataLancamento));
} catch (ParseException e) {
e.printStackTrace();
}
this.listaFilmes.add(filme);