Java Code Examples for org.springframework.cloud.netflix.zuul.filters.support.FilterConstants#SEND_RESPONSE_FILTER_ORDER

The following examples show how to use org.springframework.cloud.netflix.zuul.filters.support.FilterConstants#SEND_RESPONSE_FILTER_ORDER . You can vote up the ones you like or vote down the ones you don't like, and go to the original project or source file by following the links above each example. You may check out the related API usage on the sidebar.
Example 1
Source File: PostRequestFilter.java    From ad with Apache License 2.0 4 votes vote down vote up
@Override
public int filterOrder() {
    return FilterConstants.SEND_RESPONSE_FILTER_ORDER - 1;
}
 
Example 2
Source File: ZuulResponseFilter.java    From open-cloud with MIT License 4 votes vote down vote up
/**
 * 同filterType类型中,order值越大,优先级越低
 */
@Override
public int filterOrder() {
    return FilterConstants.SEND_RESPONSE_FILTER_ORDER + 2;
}
 
Example 3
Source File: PostResponseHeaderFilter.java    From code with Apache License 2.0 4 votes vote down vote up
@Override
public int filterOrder() {
    return FilterConstants.SEND_RESPONSE_FILTER_ORDER;
}
 
Example 4
Source File: PostLimiterZuulFilter.java    From onetwo with Apache License 2.0 4 votes vote down vote up
@Override
public int filterOrder() {
	return FilterConstants.SEND_RESPONSE_FILTER_ORDER - 10;
}