how JSP can extend servlet or interface ...?

Answers were Sorted based on User's Feedback



how JSP can extend servlet or interface ...?..

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

how JSP can extend servlet or interface ...?..

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

how JSP can extend servlet or interface ...?..

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

Post New Answer

More Servlets Interview Questions

Differentiate between get and post?

0 Answers  


What is the web server used for running the Servlets?

0 Answers  


What is servlet initializer?

0 Answers  


How to run a servlet program?

7 Answers   Infosys,


When a client request is sent to the servlet container, how does the container choose which servlet to invoke?

0 Answers  






What are the phases of the servlet life cycle?

0 Answers  


where the generated jsp source file are stored?

7 Answers   HCL,


what is the difference between?when we write the code in following manner? class One extends httpservlet { } and class One extends genericservlet { }

4 Answers  


Can you use javascript in servlets?

0 Answers  


Whether thread can be used in servlets?

0 Answers  


What are the annotations used in servlet 3?

0 Answers  


What is the difference between get and post methods?

0 Answers  


Categories