what is filters and its use?

Answers were Sorted based on User's Feedback



what is filters and its use?..

Answer / guru

filters r java classes which is intercept the client request
before it access a resource in server,then it intercept
server response before its reach clint

request filter

for security

response filter

compresed data

init(),do filter(),destroy are methods of filter

Is This Answer Correct ?    3 Yes 0 No

what is filters and its use?..

Answer / puneet

The ans cudhave been more precise: let me try :)
The filters are basically used when we need to change the
response sent back to the client like implementing
restrictions to few of the resources dependent on the user
who logs in like we dnt need to show few pages to few users
from a website then we need to make that logic in a new
class which implements filter interface and need to write
down the logic in the dofilter method which takes the
response and request objects which can be altered and
changed and the object of this class can be called dependent
on the condition of met on which we want to implement the
restrictions.

We can also use this interface to change the behavior of the
response.

Is This Answer Correct ?    0 Yes 2 No

Post New Answer

More Core Java Interview Questions

How do you access command-line arguments within the code?

0 Answers   Flextronics, Hexaware,


What is ctrl m character?

0 Answers  


What state does a thread enter when it terminates its processing in java programming?

0 Answers  


What is default switch case? Give example.

0 Answers  


What is the difference between method and means?

0 Answers  






What is the difference between static and global variables and also define what are volatile variables?

0 Answers   Flextronics, Hexaware,


What is difference between static class and normal class?

0 Answers  


Is arraylist zero based?

0 Answers  


when to use abstract class and when to use interface?

16 Answers   Exterro, iGate, IonIdea,


what are ER diagrams?

2 Answers  


what is an object class?Explain its methods?

6 Answers  


Why we can not force Garbage Collection?

7 Answers  


Categories