| Hour 14. Interacting with JavaBeansWhat You'll Learn in This Hour: How to instantiate a JavaBean for use within a JSPHow to access and set JavaBean propertiesHow to use JavaBeans by referring to the interface or superclass of the beanHow to use JavaBeans in a Web application
 When constructing Web applications, you will often find that one of the following is true: You want to reuse packages of functionality.You want to partition functionality into a freestanding component that your JSP interacts with, so that your JSP is simpler and easier to understand.
 To do this, you can create Java classes and use them in your JSP in an expression or scriptlet. However, JSPs also permit you to use JavaBeans, which can be accessed through standard actions. |