can it possible to validate form field before execution of a
servlet service method if yes how??
Answer Posted / m saravanakumar
If you want to intercept a request before servicing you
should use Filter concept in servlet which will help in
lots of ways. like the following...
1) Using the Filter we can logs the IPAddress of client
machine in log file.
2) can do the form validation like trim() functions.
| Is This Answer Correct ? | 3 Yes | 0 No |
Post New Answer View All Answers
why we should override only no-agrs init() method.
Differentiate between the print writer and servlet output stream?
Define the servlet mapping.
What is http servlet in java?
What’s the difference between sendredirect and forward methods
What do you mean by cgi in servlet?
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!
What are all the advantages of servlet over cgi?
Differentiate between get and post?
How is the get () method different from the post() method?
What are the life cycle methods of a servlet?
Whats the advantages using servlets over using CGI?
What is Request Dispatcher?
Describe servlet?
Why do we need servlet filter?