request.setAttribute("intValue", new Integer(7));
request.setAttribute("stringValue", "Hello, world!");
/* Collection of custom beans */
ArrayList books = new ArrayList();
books.add(new BookBean("0596003285", "Programming Jakarta Struts"));
books.add(new BookBean("1930110502", "Struts in Action"));
books.add(new BookBean("1861007817", "Professional Struts Applications"));
books.add(new BookBean("0672324725", "Struts Kick Start"));
books.add(new BookBean("0471213020", "Mastering Jakarta Struts"));
books.add(new BookBean("1558608621", "The Struts Framework"));
books.add(new BookBean("0971661901", "Struts Fast Track"));
request.setAttribute("books", books);
ActionErrors errors = new ActionErrors();
errors.add(ActionMessages.GLOBAL_MESSAGE,