com.iiifi.kite.boot.web.reactive.logger.RequestLogExclusiveRule Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of kite-boot Show documentation
Show all versions of kite-boot Show documentation
Spring Cloud Core Component Extension.
package com.iiifi.kite.boot.web.reactive.logger;
/**
* webflux 日志请求排除规则。
* @author [email protected] 花朝
* @date 2018/8/18 12:59
*/
public interface RequestLogExclusiveRule {
/**
* 需要排除的部分请求
*
*
* 规范:
* 1. 排除 /actuator
* 2. 含有 . 而非 .jackson,排除掉。
*
* @param path 路径
* @return 是否排除
*/
boolean excluded(String path);
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy