spring中自定義註解的流程

2021-09-11 00:21:28 字數 299 閱讀 7116

可以結合spring的aop,對註解進行攔截,提取註解。

大致流程為:

新建乙個註解@mylog,加在需要註解申明的方法上面

新建乙個類mylogaspect,通過@aspect註解使該類成為切面類。

通過@pointcut 指定切入點 ,這裡指定的切入點為mylog註解型別,也就是被@mylog註解修飾的方法,進入該切入點。

mylogaspect中的方法通過加通知註解(@before、@around、@afterreturning、@afterthrowing、@after等各種通知)指定要做的業務操作。

Spring 自定義註解案例

1.自定義時間格式註解 target elementtype.field 作用於字段上 retention retentionpolicy.runtime 保留到執行期 public inte ce dateparse2.自定義資料字典註解 target elementtype.field 作用於字...

spring中使用自定義註解

使用spring時,aop可以大幅度減少我們的工作量,這裡主要介紹一些spring中aop如何切註解。自定義註解 target retention retentionpolicy.runtime public inte ce myannotation 編寫切面類,切點在自定義註解上,切面類新增到sp...

自定義註解

target elementtype.field retention retentionpolicy.runtime public inte ce setvalue以上就是乙個自定義的註解,下面來進行說明。target elementtype.field 表示支援該註解的程式元素,field就是屬性...