开发者

Who will take the roll of service method in filters in java?

Filters are like servlets but managed by the web container but there is service() method in servlets but there is no method called se开发者_运维技巧rvice in filters. There are three only three methods init(), doFilter(), and destroy().Can anybody elaborate on this ?


The doFilter() method is the one that is called whenever a Filter processes a request.

A simple example is as follows:

public void doFilter(ServletRequest request,
  ServletResponse response, FilterChain chain) 
  throws IOException, ServletException {
  // .. pre filter logic
  chain.doFilter(request, response);
  // .. post filter logic
}

The filter allows you to decide whether to continue processing the request i.e. whether subsequent filters will process this request and finally the servlet at the end. You can choose not to call chain.doFilter (good example of this would be if you're using the filter for authentication). See this guide for more information.


A filter serves a different role from a servlet. Therefore it doesn't have the same methods. A filter's role is, well, to filter, and that's what the doFilter() method does.

Have a look at the "Filtering Requests and Responses" chapter of the Java EE Tutorial.


For more details, in addition to the other responses, see page 49 of the Java Servlet Specification 2.4 at https://cds.sun.com/is-bin/INTERSHOP.enfinity/WFS/CDS-CDS_JCP-Site/en_US/-/USD/ViewFilteredProducts-SimpleBundleDownload

0

上一篇:

下一篇:

精彩评论

暂无评论...
验证码 换一张
取 消

最新问答

问答排行榜