Mega Code Archive

 
Categories / Java / JSP
 

Getting a Property Value

//File: index.jsp <HTML>   <HEAD>     <TITLE>Getting a Property Value</TITLE>   </HEAD>   <BODY>     <H1>Getting a Property Value</H1>     <jsp:useBean id="bean1" class="beans.Message" />     The message is: <jsp:getProperty name="bean1" property="message" />    </body> </html> //////////////////////////////////////////// //Java Bean Class package beans; public class Message {     private String message = "Hello from JSP!";     public String getMessage()      {         return message;     }     public Message()      {     } }                     GetAPropertyValue.zip( 89 k)