- 浏览: 1892 次
最新评论
文章列表
首先 自定义注解ExtModelAttribute
import java.lang.annotation.Documented;
import java.lang.annotation.ElementType;
import java.lang.annotation.Retention;
import java.lang.annotation.RetentionPolicy;
import java.lang.annotation.Target;
/**
*/
@Target({ElementType.PARAMETER, ElementType.METHOD})
...