JSP with Java bean : Beans « JSP « Java

Java
1. 2D Graphics GUI
2. 3D
3. Advanced Graphics
4. Ant
5. Apache Common
6. Chart
7. Class
8. Collections Data Structure
9. Data Type
10. Database SQL JDBC
11. Design Pattern
12. Development Class
13. EJB3
14. Email
15. Event
16. File Input Output
17. Game
18. Generics
19. GWT
20. Hibernate
21. I18N
22. J2EE
23. J2ME
24. JDK 6
25. JNDI LDAP
26. JPA
27. JSP
28. JSTL
29. Language Basics
30. Network Protocol
31. PDF RTF
32. Reflection
33. Regular Expressions
34. Scripting
35. Security
36. Servlets
37. Spring
38. Swing Components
39. Swing JFC
40. SWT JFace Eclipse
41. Threads
42. Tiny Application
43. Velocity
44. Web Services SOA
45. XML
Java Tutorial
Java Source Code / Java Documentation
Java Open Source
Jar File Download
Java Articles
Java Products
Java by API
Photoshop Tutorials
Maya Tutorials
Flash Tutorials
3ds-Max Tutorials
Illustrator Tutorials
GIMP Tutorials
C# / C Sharp
C# / CSharp Tutorial
C# / CSharp Open Source
ASP.Net
ASP.NET Tutorial
JavaScript DHTML
JavaScript Tutorial
JavaScript Reference
HTML / CSS
HTML CSS Reference
C / ANSI-C
C Tutorial
C++
C++ Tutorial
Ruby
PHP
Python
Python Tutorial
Python Open Source
SQL Server / T-SQL
SQL Server / T-SQL Tutorial
Oracle PL / SQL
Oracle PL/SQL Tutorial
PostgreSQL
SQL / MySQL
MySQL Tutorial
VB.Net
VB.Net Tutorial
Flash / Flex / ActionScript
VBA / Excel / Access / Word
XML
XML Tutorial
Microsoft Office PowerPoint 2007 Tutorial
Microsoft Office Excel 2007 Tutorial
Microsoft Office Word 2007 Tutorial
Java » JSP » BeansScreenshots 
JSP with Java bean

<%@ page import="java.util.*" %>
<html>
  <head>
    <title>WishList</title>
    <jsp:useBean class="com.java2s.WishList" id="wishList" scope="session"/>
    <jsp:useBean class="com.java2s.WishListItems" id="wishListItems" scope="application" />
  </head>
  <body>
    <% Enumeration e = request.getParameterNames(); %>
    <% Set map = wishList.getMap(); %>
    <% while(e.hasMoreElements()){
      String key = (String)e.nextElement();
        if(key.equals(wishListItems.getItem(0).getId())){
          map.add(wishListItems.getItem(0));
        }
        if(key.equals(wishListItems.getItem(1).getId())){
          map.add(wishListItems.getItem(1));
        }
        if(key.equals(wishListItems.getItem(2).getId())){
          map.add(wishListItems.getItem(2));
        }
        if(key.equals(wishListItems.getItem(3).getId())){
          map.add(wishListItems.getItem(3));
        }
        if(key.equals(wishListItems.getItem(4).getId())){
          map.add(wishListItems.getItem(4));
        }
      %>
      Items currently In your Wish List:<br>
      <% if(map.size()==0){ %>
           There are no items in your Wish List<br>
 <%   }
      else {
        Set set = map; %>
        <% if (set!=null){
            com.java2s.Item[] keys = new com.java2s.Item[0];
            keys = (com.java2s.Item[])set.toArray(keys);
            for (int i=0;i<keys.length;i++){ %>
              <%=keys[i].getName()%><%="<br>"%>
   <%       }
          }
      }%>
    <br><a href="wishListForm.jsp">Add another Item</a>
  </body>
</html>

//wishListForm.jsp
<html>
  <head>
    <title>WishList</title>
    <jsp:useBean class="com.java2s.WishList" id="wishList" scope="session"/>
    <jsp:useBean class="com.java2s.WishListItems" id="wishListItems" scope="application" />
  </head>
  <body>
    Please Select items for your WishList:<br>
    <form method="post" action="wishList.jsp">
      <input type="checkbox" name="<%=wishListItems.getItem(0).getId()%>"/><%=wishListItems.getItem(0).getName()%> -
      <%=wishListItems.getItem(0).getName()%></input><br>
      <input type="checkbox" name="<%=wishListItems.getItem(1).getId()%>"/><%=wishListItems.getItem(1).getName()%> -
      <%=wishListItems.getItem(1).getName()%></input><br>
      <input type="checkbox" name="<%=wishListItems.getItem(2).getId()%>"/><%=wishListItems.getItem(2).getName()%> -
      <%=wishListItems.getItem(2).getName()%></input><br>
      <input type="checkbox" name="<%=wishListItems.getItem(3).getId()%>"/><%=wishListItems.getItem(3).getName()%> -
      <%=wishListItems.getItem(3).getName()%></input><br>
      <input type="checkbox" name="<%=wishListItems.getItem(4).getId()%>"/><%=wishListItems.getItem(4).getName()%> -
      <%=wishListItems.getItem(4).getName()%></input><br>
      <input type="submit" value="Add to My WishList">
    </form>
    <p><a href="wishList.jsp">Show me my wishlist</a>
    <p><a href="logout.jsp">Log Out</a>
  </body>
</html>

//logout.jsp
<html>
  <head>
    <title>WishList</title>
    <jsp:useBean class="com.java2s.WishList" id="wishList" scope="session"/>
  </head>
  <body>
    <% session.removeAttribute("wishList");%>
    You have been logged out

    <p><a href="wishListForm.jsp">Log in again</a>
  </body>
</html>
package com.java2s;

public class Item {
  private String id;
  private String name;
  
  public Item(){}
  
  public Item(String s, String t){
    name=s;
    id=t;
  }
  
  public String getId(){
    return id;
  }
  
  public String getName(){
    return name;
  }
}




package com.java2s;
import javax.servlet.http.HttpSessionBindingListener;
import javax.servlet.http.HttpSessionBindingEvent;
import java.util.Set;
import java.util.HashSet;
import java.util.Iterator;

public class WishList implements HttpSessionBindingListener {
  private Set map = new HashSet();
  public Set getMap(){
    return map;
  }

  //Session binding methods
  public void valueBound(HttpSessionBindingEvent e){
    System.out.println("The WishList has been Bound!");
  }

  public void valueUnbound(HttpSessionBindingEvent e){
    Item[] keys = new Item[0];
    System.out.println("Getting values...");
    Iterator it = map.iterator();
    while(it.hasNext()){
      Item item = (Item)it.next();
      System.out.println(item.getName());
    }
  }
}


package com.java2s;

public class WishListItems {
  
  private Item[] items = {
        new Item("ID 1","Name 1"),
        new Item("ID 2","Name 2"),
        new Item("ID 3","Name 3"),
        new Item("ID 4","Name 4"),
        new Item("ID 5","Name 5")
        };
    
  public Item getItem(int i){
    if (items[i]!=null){
      return items[i];
    }
    
    else {
      return null;
    }
  }
  
}
           
       
Related examples in the same category
1. Calling a Private Method
2. Jsp Form And Bean
3. Get Set Properties JSTL
4. Getting a Property Value
5. Using a Constructor
6. Using Bean Counter JSP
7. Using a Java Bean Jsp
8. Using Package Jsp
9. Using UseBean in Jsp
10. Set Property Value
11. Jsp Using Bean Scope Session
12. Bean property display
13. Beans with scriptlet
14. EL and Complex JavaBeans
15. JSP form and Java beans
16. JSP email valid check
17. JSP and Java beans 3
18. JSP Standard Actions: set property
19. JSP and Java beans (JavaBeans) 1JSP and Java beans (JavaBeans) 1
20. JSP and Java beans (JavaBeans) 2JSP and Java beans (JavaBeans) 2
www.java2java.com | Contact Us
Copyright 2009 - 12 Demo Source and Support. All rights reserved.
All other trademarks are property of their respective owners.