how JSP can extend servlet or interface ...?
Answers were Sorted based on User's Feedback
Answer / aashish r. wadhokar
no, We cannot implement an interface in a jsp bcoz jsp is an
file not a class as well as jsp is converted into a servlet
class
and this translation(jsp file to servlet class) is done by
jsp engine so we cant implement interface in jsp file.
yes, we can extend a class in jsp page using extends keyword
using extends attribute of the page directive.
eg: extends "com.classes.class"
| Is This Answer Correct ? | 16 Yes | 1 No |
Answer / aashish r. wadhokar
no, We cannot implement an interface in a jsp bcoz jsp is an
file not a class as well as jsp is converted into a servlet
class
and this translation(jsp file to servlet class) is done by
jsp engine so we cant implement interface in jsp file.
yes, we can extend a class in jsp page using extends keyword
using extends attribute of the page directive.
eg: extends "com.classes.class"
| Is This Answer Correct ? | 16 Yes | 2 No |
Answer / jayakrishna
We cannot implement an interface in a jsp but we can extend
a class in JSP by using extends attribute of the page
directive.
extends "package.class"
The fully qualified name of the superclass of the Java
class file this JSP file will be compiled to. Use this
attribute cautiously as it can limit the JSP container's
ability to provide a specialized superclass that improves
the quality of the compiled file.
| Is This Answer Correct ? | 7 Yes | 4 No |
How to get the current httpsession object?
What if you need to span your transaction across multiple servlet invocations?
In servlets, Why do we need both GET and POST method implementations?
What are the different methods involved in the process of session management in servlets?
What is a servlet-to-servlet communcation?
What is the use of httpservletrequestwrapper?
what is meant by servlet to servlet communication?
What do you mean by scope object and what are its types?
How to read request headers from servlets?
Why servlet is faster than jsp?
What is servlet initializer?
If you want to modify the servlet,will the Webserver need to be ShutDown ?