Beans with scriptlet : Beans « JSP « Java

Home
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 » JSP » BeansScreenshots 
Beans with scriptlet

<%@ page import="com.java2s.Book" %>

<%
  Book myBook = (Booksession.getAttribute("myBookBean");

  if myBook == null)
  {
    myBook = new Book();
    myBook.setAuthor("Joe");
    session.setAttribute("myBookBean", myBook);
  // end of if ()

%>
  
<html>
  <head><title>JavaBean usage with scriptlets (1)</title></head>
  <body>
    This page creates a JavaBean if you don't already have one.<P></P>
    Click <a href="page2_scriptlet.jsp">here</a> to go to a page that retrieves it.
  </body>
</html>


//page2_scriptlet.jsp
<%@ page import="com.java2s.Book" %>
<%
  Book myBook = (Booksession.getAttribute("myBookBean");
%>

<html>
  <head><title>JavaBean usage with scriptlets (2</title></head>
  <body>
    This page retrieves a JavaBean, and its properties.<P>

    <table border="1">
      <th>JavaBean property</th><th>Value</th>
      <tr><td>id</td>    <td><%= myBookBean.getId()     %></td></tr>
      <tr><td>title</td> <td><%= myBookBean.getTitle()  %></td></tr>
      <tr><td>author</td><td><%= myBookBean.getAuthor() %></td></tr>
      <tr><td>price</td> <td><%= myBookBean.getPrice()  %></td></tr>
    </table>
  </body>
</html>



///JavaBean usage - useBean and setProperty tags


<jsp:useBean id="myBookBean"
             class="com.java2s.Book"
             scope="session">
  <jsp:setProperty name="myBookBean" property="id"     value="42"                      />
  <jsp:setProperty name="myBookBean" property="author" value="Ruth"                    />
  <jsp:setProperty name="myBookBean" property="title"  value="Cookery for accountants" />
  <jsp:setProperty name="myBookBean" property="price"  value="29.99"                   />
</jsp:useBean>

<html>
  <head><title>JavaBean usage - useBean and setProperty tags</title></head>
  <body>
    This page creates a JavaBean if you don't already have one.<P></P>
    Click <a href="useAndSet2.jsp">here</a> to go to a page that retrieves it.
  </body>
</html>

//useAndSet2.jsp
<html>
  <head><title>JavaBean usage - getProperty tag</title></head>
  <body>
    This page retrieves a JavaBean, and its properties.<P>

    <table border="1">
      <th>JavaBean property</th><th>Value</th>
      <tr><td>id</td>    <td><jsp:getProperty name="myBookBean" property="id"     /></td></tr>
      <tr><td>title</td> <td><jsp:getProperty name="myBookBean" property="title"  /></td></tr>
      <tr><td>author</td><td><jsp:getProperty name="myBookBean" property="author" /></td></tr>
      <tr><td>price</td> <td><jsp:getProperty name="myBookBean" property="price"  /></td></tr>
    </table>
  </body>
</html>


           
       
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.EL and Complex JavaBeans
14.JSP with Java bean
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
java2s.com  | Contact Us | Privacy Policy
Copyright 2009 - 12 Demo Source and Support. All rights reserved.
All other trademarks are property of their respective owners.