# Sentinel Web Servlet Filter Sentinel provides Servlet filter integration. To use the filter, you can simply configure your `web.xml` with: ```xml SentinelCommonFilter com.alibaba.csp.sentinel.adapter.servlet.CommonFilter SentinelCommonFilter /* ``` When a request is blocked, Sentinel servlet filter will give a default page indicating the request blocked. If customized block page is set (via `WebServletConfig.setBlockPage(blockPage)` method), the filter will redirect the request to provided URL. You can also implement your own block handler (the `UrlBlockHandler` interface) and register to `WebCallbackManager`.