com.ideaaedi.commonspring.spi.RequestPathProvider Maven / Gradle / Ivy
package com.ideaaedi.commonspring.spi;
import java.lang.reflect.Method;
/**
* 请求路径提供器
*
* @author JustryDeng
* @since 1.0.0
*/
public interface RequestPathProvider {
/**
* 获取请求路径
*
* @param method
* 当前方法
* @return 请求路径
*/
String requestPath(Method method);
}