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

cn.potato.annotation.Intercept Maven / Gradle / Ivy

Go to download

以约定优于配置的思想,结合SpringMVC的一些优点(参数自动注入),实现一个自己的简单MVC框架。

The newest version!
package cn.potato.annotation;

import java.lang.annotation.Retention;
import java.lang.annotation.RetentionPolicy;
import java.lang.annotation.Target;

import cn.potato.web.Interceptor;

/**
 * 如果控制器需要拦截器可以使用该注解
 * @author 李恒名
 * @since 2016年3月4日
 */
@Target({java.lang.annotation.ElementType.TYPE})
@Retention(RetentionPolicy.RUNTIME)
public @interface Intercept
{
  public abstract Class[] classes();
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy