All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.ideaaedi.commonspring.lite.params.RequestEntranceJudger Maven / Gradle / Ivy

There is a newer version: 2100.10.10.LTS17
Show newest version
package com.ideaaedi.commonspring.lite.params;

import org.springframework.lang.NonNull;

import java.lang.reflect.Method;

/**
 * 请求入口判断器
 *
 * @author JustryDeng 
 * @since 1.0.0
 */
public interface RequestEntranceJudger {
    
    /**
     * 当前方法是否是请求入口
     * 

* return true: 是请求入口; false: 不是请求入口 */ boolean ifEntrance(@NonNull Class targetClazz, @NonNull Method targetMethod, Object[] arguments); }





© 2015 - 2024 Weber Informatics LLC | Privacy Policy