if(servletPath.equals("/users/show")) {
page += "_show";
String[] tokens = request.getRequestURI().split("/");
User user = User.getById(new Integer(tokens[tokens.length - 1]));
List<Feedback> to = Feedback.getByToId(new Integer(tokens[tokens.length - 1]));
List<Auction> auctions = Auction.getByUserId(user.getId());
List<Auction> auctions_now = Auction.getByLastUserId(user.getId());
List<Auction> auctions_win = Auction.getWin(user.getId());
request.setAttribute("user", user);
request.setAttribute("to", to);
request.setAttribute("auctions", auctions);
request.setAttribute("auctions_now", auctions_now);
request.setAttribute("auctions_win", auctions_win);