Answer Posted / 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 |
Post New Answer View All Answers
What is Request Dispatcher?
What is servlet in tomcat?
How can the session in servlet can be destroyed?
When should you prefer to use doget() over dopost()?
What is the use of httpservletrequestwrapper?
How many objects of a servlet is created?
What is the use of httpservletrequestwrapper and httpservletresponsewrapper?
How will two or three servlets interact or communicate with each other?
What is servlet configuration?
What is servlet and list its types?
What are the types of protocols supported by httpservlet ?
Hello, My project requirement is like I need to create a web page using MVC pattern. I hava a bean class, jsp page, servlet, service and dao. My jsp has two fields. One is dropdown list. The option values has to get populated from the database table. The other one is a text box and its value has to come from database table. As of now I have defined the fields in bean class, got the values from database using arraylists in dao class and I called this from service class. Can anyone please tell me the workflow of how the servlet will get this arraylist and populate the arraylist values as dropdown options in jsp page? Also I would like to know the role of bean class in MVC pattern? Thanks in advance!
If some new data has entered the database, explain how can a servlet refresh automatically?
Name the packages that work with servlet?
Explain the custom jsp tags and the beans.