how we can implement interface in jsp ?
Answers were Sorted based on User's Feedback
Answer / rahul
A JSP page can't directly implement an interface. If you
really need to do this you'll have to define a superclass
for your page which implements the interface. If you
declare this superclass to be abstract you can defer the
implementation of the interface to the JSP page. This
superclass will have to implement the interfaces
HttpJspPage and Servlet too, otherwise you will get a
compilation error from the JSP compiler.
Is This Answer Correct ? | 27 Yes | 4 No |
Answer / srinu
yes we can implement interface.The follwing way we can
imlement the interface.
<%@ page import='mypackage.MyInterface' %>
Is This Answer Correct ? | 4 Yes | 22 No |
What are the JSP implicit objects ?
Can you control when passivation occurs?
Why a component architecture for the java platform?
What are the thread-to-thread communcation?
the use of try and ffinally keyword
does j2ee means advanced java
What is the priority of Garbage collector thread?
how i secure my site with the https protocol.what are the steps?
What are the high-level thread states?
what is stringBuffer and StringBuilder?
can i call multipule form beans in Action class?
What is Stream and Types?