| package com.matrix.core.anotations; | 
|   | 
| import java.lang.annotation.ElementType; | 
| import java.lang.annotation.Retention; | 
| import java.lang.annotation.RetentionPolicy; | 
| import java.lang.annotation.Target; | 
|   | 
| /** | 
|  * 防止重复提交的注解类 | 
|  * 标识需要在session保存一个访问token | 
|  * @author jiangyouyao | 
|  * | 
|  */ | 
| @Target(ElementType.METHOD) | 
| @Retention(RetentionPolicy.RUNTIME) | 
| public @interface SaveRequestToken { | 
| } |