// OK
  @RequestMapping(value = "/rest-pesquisar-produto-id/{id}", method = RequestMethod.GET)
  public Produto findById(@PathVariable int id, HttpServletResponse response) {
    produtoDao = new ProdutoDao();
    p = new Produto();
    try {
      p = produtoDao.pesquisarPorId(id);
    } catch (Exception e) {
      System.out.println("ERRO - rest produtos, busca produtos por id.");
      e.printStackTrace();
    }
    colocarAcesso(response);

    return p;
  }