what is servlet filter?

Answers were Sorted based on User's Feedback



what is servlet filter?..

Answer / dileep

In http servlet contains doget,dopost methods etc and it
takes two parameters only namely as
HttpServletRequest,HttpServletResponse and in Filter
concept contain one method has doFilter method .it takes 3
parameters namely as
HttpServletRequest,HttpServletResponse,FilterChain.the
Filter chain is use to convert one filter to another filter
Filters are mainly used for filtering the components and we
can do any modifications using Filters.

Is This Answer Correct ?    10 Yes 1 No

what is servlet filter?..

Answer / jeh

Filter is a web component for web based applications. It
intercepts the request before calling service method and
process the response after executing the service method.
Filter mainly validates the client submitted data

Is This Answer Correct ?    2 Yes 2 No

Post New Answer

More Core Java Interview Questions

Is java a utf 8 string?

0 Answers  


What are passing parameters?

0 Answers  


When should I use singleton pattern?

0 Answers  


Can this keyword be used to refer static members?

0 Answers  


What is numeric function?

0 Answers  






What is exception propagation?

0 Answers  


How to Sort Strings which are given in List and display in ascending order without using java api.

1 Answers   LIC,


Can we declare a class as static?

0 Answers  


What are the two types of streams offered by java 8?

0 Answers  


Difference between method overloading and method overriding in java ?

0 Answers  


If a method is declared as protected, where may the method be accessed?

0 Answers  


What technique can be employed to compare two strings?

0 Answers  


Categories