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 pros and cons of detached objects?
Explain what is orm?
What classes of exceptions may be caught by a catch clause?
Explain the purposes of methods wait(), notify(), notifyAll ()?
Write a java program to find out the sum of harmonic series : 1 + ½ + 1/3 + ……… up to nth term , for any value of n.
Where can I ask questions and make suggestions about seam?
What is the need of serialize?
Will the general public have access to the infobus apis?
What will happens, when a thread cannot acquire a lock on an object?
How many times may an objects finalize() method be invoked by the garbage collector?
What is the relationship between the canvas class and the graphics class?
Dear freinds... I want to know how to write self mapping for a table using hibernate?