Eric Zhao c92fea5d46 Welcome to the world, Sentinel | 6 年之前 | |
---|---|---|
.. | ||
src/main/java/com/alibaba/csp/sentinel/adapter/servlet | 6 年之前 | |
README.md | 6 年之前 | |
pom.xml | 6 年之前 |
Sentinel provides Servlet filter integration. To use the filter,
you can simply configure your web.xml
with:
<filter>
<filter-name>SentinelCommonFilter</filter-name>
<filter-class>com.alibaba.csp.sentinel.adapter.servlet.CommonFilter</filter-class>
</filter>
<filter-mapping>
<filter-name>SentinelCommonFilter</filter-name>
<url-pattern>/*</url-pattern>
</filter-mapping>
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
.