org.jleopard.mvc.inter.Clear Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of jleopard-mvc Show documentation
Show all versions of jleopard-mvc Show documentation
This is a lightweight complete MVC framework,The framework is based on sevlet3.1
SpringMvc style implements IOC container and interceptor interface.
The newest version!
/**
* @author (c) 2018, Chen_9g 陈刚 ([email protected]).
* @date 2018-10-05 上午11:50
*
*
* Find a way for success and not make excuses for failure.
*
*/
package org.jleopard.mvc.inter;
import java.lang.annotation.*;
/**
* 清除拦截器
*/
@Inherited
@Retention(RetentionPolicy.RUNTIME)
@Target(ElementType.METHOD)
public @interface Clear {
Class extends Interceptor>[] value();
}