Advertisement
Guest User

Untitled

a guest
May 28th, 2017
52
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Java 0.36 KB | None | 0 0
  1. //Pra colocar na sessão
  2. request.getSession().setAttribute("lstPublicacoes", lstPublicacoes);
  3. request.getSession().setAttribute("page", 1);
  4.  
  5.  
  6. //Pra pegar da sessão
  7. List<Publication> lstPublicacoes = (List<Publication>) request.getSession().getAttribute("lstPublicacoes");
  8. int pagina = Integer.parseInt(request.getSession().getAttribute("page").toString());
  9. int i;
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement