国产探花免费观看_亚洲丰满少妇自慰呻吟_97日韩有码在线_资源在线日韩欧美_一区二区精品毛片,辰东完美世界有声小说,欢乐颂第一季,yy玄幻小说排行榜完本

首頁 > 編程 > JSP > 正文

JSP 自定義注解及記錄操作日志

2024-09-05 00:23:06
字體:
來源:轉載
供稿:網友

 

JSP 自定義注解及記錄操作日志

Spring的配置文件

<aop:aspectj-autoproxy />

日志攔截器

package com.vem.interceptor;import org.aspectj.lang.ProceedingJoinPoint;import org.aspectj.lang.annotation.Around; import org.aspectj.lang.annotation.Aspect; import org.aspectj.lang.annotation.Pointcut;import org.aspectj.lang.reflect.MethodSignature;import org.springframework.stereotype.Component;import com.vem.entity.BussAnnotation; @Aspect @Component public class LogInterceptor {     @Pointcut("execution(* com.vem.service..*.*(..))")   public void aApplogic() {      }      /**    * 環繞通知 用于攔截指定內容,記錄用戶的操作    */   @Around(value = "aApplogic() && @annotation(annotation) &&args(object,..) ", argNames = "annotation,object")   public void interceptorApplogic(ProceedingJoinPoint joinPoint,       BussAnnotation annotation, Object object) throws Throwable {     System.out.println("模塊名稱moduleName:" + annotation.moduleName());     System.out.println("操作名稱option:" + annotation.option());     String methodName = joinPoint.getSignature().getName(); System.out.println("方法名methodName:" + methodName);         MethodSignature methodSignature = (MethodSignature) joinPoint.getSignature();     String[] strings = methodSignature.getParameterNames();         joinPoint.proceed();         Object[] arguments = joinPoint.getArgs();  //獲得參數列表    if(arguments.length<=0){       System.out.println(methodName+"方法沒有參數");     }else{      for(int i=0;i<arguments.length;i++){      System.out.println(strings[i]+" : "+arguments[i]+" : ");     }     }   } } 

自定義注解

@Retention(RetentionPolicy.RUNTIME) @Target({ElementType.METHOD}) @Documented public @interface BussAnnotation {   //模塊名   String moduleName() default "";   //操作內容   String option() default ""; } 

接口實現

寫在service

@BussAnnotation(moduleName="人員管理",option="添加用戶") public void testDemo1(PageData pd) throws Exception{ }

junit測試類

package com.vem.entity;import javax.annotation.Resource;import org.junit.Test; import org.junit.runner.RunWith; import org.springframework.test.context.ContextConfiguration; import org.springframework.test.context.junit4.SpringJUnit4ClassRunner;import com.vem.service.data.DemoService;import com.vem.util.PageData;  @RunWith(SpringJUnit4ClassRunner.class) @ContextConfiguration( {"classpath:spring/ApplicationContext.xml" })public class AopTest {   @Resource(name = "demoService") public DemoService demoService;    @Test   public void testAopAddUser1(){    PageData pd = new PageData();   pd.put("name", "zhangzexing");   pd.put("age", "21");   pd.put("passward", "123456");   try {  demoService.testDemo2(pd); } catch (Exception e) {  // TODO Auto-generated catch block  e.printStackTrace(); }  } }  

感謝閱讀,希望能幫助到大家,謝謝大家對本站的支持!


注:相關教程知識閱讀請移步到JSP教程頻道。
發表評論 共有條評論
用戶名: 密碼:
驗證碼: 匿名發表
主站蜘蛛池模板: 舞钢市| 定陶县| 柞水县| 平顺县| 渭南市| 墨竹工卡县| 平泉县| 原平市| 马公市| 合山市| 楚雄市| 石林| 长治市| 扶余县| 灌云县| 庆元县| 黑河市| 察隅县| 铜梁县| 临邑县| 辽阳市| 绍兴县| 巫山县| 耿马| 伊金霍洛旗| 富平县| 合江县| 缙云县| 林周县| 繁昌县| 江陵县| 平乡县| 深圳市| 延边| 屏边| 开平市| 闵行区| 凤城市| 宿松县| 启东市| 阳东县|