閱讀本文大概須要 5 分鐘。javascript
做者:何甜甜在嗎
連接:https://juejin.im/post/5cf376e16fb9a07eee5eb6ebphp
字段註解
hibernate-validate
依賴就提供了不少校驗註解 ,如
@NotNull
、
@Range
等,可是這些註解並非可以知足全部業務場景的。
String
集合中,那麼已有的註解就不能知足需求了,須要本身實現。
自定義註解
@Check
註解,經過
@interface
聲明一個註解
@Target({ ElementType.FIELD}) //只容許用在類的字段上
@Retention(RetentionPolicy.RUNTIME) //註解保留在程序運行期間,此時能夠經過反射得到定義在某個類上的全部註解
@Constraint(validatedBy = ParamConstraintValidated.class)
public @interface Check {
/**
* 合法的參數值
* */
String[] paramValues();
/**
* 提示信息
* */
String message() default "參數不爲指定值";
Class<?>[] groups() default {};
Class<? extends Payload>[] payload() default {};
}
java
ElementType.TYPE
:說明該註解只能被聲明在一個類前。
ElementType.FIELD
:說明該註解只能被聲明在一個類的字段前。
ElementType.METHOD
:說明該註解只能被聲明在一個類的方法前。
ElementType.PARAMETER
:說明該註解只能被聲明在一個方法參數前。
ElementType.CONSTRUCTOR
:說明該註解只能聲明在一個類的構造方法前。
ElementType.LOCAL_VARIABLE
:說明該註解只能聲明在一個局部變量前。
ElementType.ANNOTATION_TYPE
:說明該註解只能聲明在一個註解類型前。
ElementType.PACKAGE
:說明該註解只能聲明在一個包名前
RetentionPolicy.SOURCE
: 註解只保留在源文件中
RetentionPolicy.CLASS
: 註解保留在class文件中,在加載到JVM虛擬機時丟棄
RetentionPolicy.RUNTIME
: 註解保留在程序運行期間,此時能夠經過反射得到定義在某個類上的全部註解。
驗證器類
ConstraintValidator
泛型接口
Check
:註解,第二個泛型參數
Object
:校驗字段類型。須要實現
initialize
和
isValid
方法,
isValid
方法爲校驗邏輯,
initialize
方法初始化工做
使用方式
@Data
public class User {
/**
* 姓名
* */
private String name;
/**
* 性別 man or women
* */
@Check(paramValues = {"man", "woman"})
private String sex;
}
程序員
sex
字段加校驗,其值必須爲
woman
或者
man
測試
@RestController("/api/test")
public class TestController {
@PostMapping
public Object test(@Validated @RequestBody User user) {
return "hello world";
}
}
web
User
對象上加上
@Validated
註解,這裏也能夠使用
@Valid
註解,
@Validated 和 @Valid 的區別,這篇建議看下。
方法、類註解
guava cache
中查找,在從
redis
查找,最後查找
mysql
(多級緩存)。
spring-data-redis
包下相似
@Cacheable
的註解。
權限註解
自定義註解
@Target({ ElementType.METHOD, ElementType.TYPE})
@Retention(RetentionPolicy.RUNTIME)
public @interface PermissionCheck {
/**
* 資源key
* */
String resourceKey();
}
redis
攔截器類
public class PermissionCheckInterceptor extends HandlerInterceptorAdapter {
/**
* 處理器處理以前調用
*/
@Override
public boolean preHandle(HttpServletRequest request, HttpServletResponse response,
Object handler) throws Exception {
HandlerMethod handlerMethod = (HandlerMethod)handler;
PermissionCheck permission = findPermissionCheck(handlerMethod);
//若是沒有添加權限註解則直接跳過容許訪問
if (permission == null) {
return true;
}
//獲取註解中的值
String resourceKey = permission.resourceKey();
//TODO 權限校驗通常須要獲取用戶信息,經過查詢數據庫進行權限校驗
//TODO 這裏只進行簡單演示,若是resourceKey爲testKey則校驗經過,不然不經過
if ("testKey".equals(resourceKey)) {
return true;
}
return false;
}
/**
* 根據handlerMethod返回註解信息
*
* @param handlerMethod 方法對象
* @return PermissionCheck註解
*/
private PermissionCheck findPermissionCheck(HandlerMethod handlerMethod) {
//在方法上尋找註解
PermissionCheck permission = handlerMethod.getMethodAnnotation(PermissionCheck.class);
if (permission == null) {
//在類上尋找註解
permission = handlerMethod.getBeanType().getAnnotation(PermissionCheck.class);
}
return permission;
}
}
spring
true
,不然返回
false
測試
@GetMapping("/api/test")
@PermissionCheck(resourceKey = "test")
public Object testPermissionCheck() {
return "hello world";
}
sql
PermissionCheck
註解。
緩存註解
自定義註解
@Target({ ElementType.METHOD, ElementType.TYPE})
@Retention(RetentionPolicy.RUNTIME)
public @interface CustomCache {
/**
* 緩存的key值
* */
String key();
}
數據庫
切面
@Aspect
@Component
public class CustomCacheAspect {
/**
* 在方法執行以前對註解進行處理
*
* @param pjd
* @param customCache 註解
* @return 返回中的值
* */
@Around("@annotation(com.cqupt.annotation.CustomCache) && @annotation(customCache)")
public Object dealProcess(ProceedingJoinPoint pjd, CustomCache customCache) {
Object result = null;
if (customCache.key() == null) {
//TODO throw error
}
//TODO 業務場景會比這個複雜的多,會涉及參數的解析如key多是#{id}這些,數據查詢
//TODO 這裏作簡單演示,若是key爲testKey則返回hello world
if ("testKey".equals(customCache.key())) {
return "hello word";
}
//執行目標方法
try {
result = pjd.proceed();
} catch (Throwable throwable) {
throwable.printStackTrace();
}
return result;
}
}
測試
@GetMapping("/api/cache")
@CustomCache(key = "test")
public Object testCustomCache() {
return "don't hit cache";
}
推薦閱讀:
微信掃描二維碼,關注個人公衆號
朕已閱
本文分享自微信公衆號 - 程序員的成長之路(cxydczzl)。
若有侵權,請聯繫 support@oschina.cn 刪除。
本文參與「OSC源創計劃」,歡迎正在閱讀的你也加入,一塊兒分享。