|
|
|
JSP Tutorials
|
EL and complex JavaBeans1
EL means the expression language , it makes it possible to easily access application data stored in JavaBeans components. The jsp expression language allows a page author to access a bean using simple syntax such as $(name).
View Rating |
|
|
JSP Tutorials
|
Using Abstract Class
We does not make a object of the abstract class. This class must be inherited. Unlike interface the abstract class may implement some of the methods defined in the class, but in this class at least one method should be abstract.
View Rating |
|
|
JSP Tutorials
|
Constructor Inheritance
Constructors are used to create objects from the class. Constructor declaration are just like method declaration, except that they do not have any return type and they use the name of the class.
View Rating |
|
|
JSP Tutorials
|
String Arrays Java
String array cannot hold numbers or vice- versa. Jsp arrays can only store the type of data specified at the time of declaring the array variable. An array is a type of container which can hold a fixed number of values of a single type.
View Rating |
|
|