JSP 自定義注解及記錄操作日志
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() { } /** * 環(huán)繞通知 用于攔截指定內(nèi)容,記錄用戶的操作 */ @Around(value = "aApplogic() && @annotation(annotation) &&args(object,..) ", argNames = "annotation,object") public void interceptorApplogic(ProceedingJoinPoint joinPoint, BussAnnotation annotation, Object object) throws Throwable { System.out.println("模塊名稱(chēng)moduleName:" + annotation.moduleName()); System.out.println("操作名稱(chēng)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(); //獲得參數(shù)列表 if(arguments.length<=0){ System.out.println(methodName+"方法沒(méi)有參數(shù)"); }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 ""; //操作內(nèi)容 String option() default ""; }
接口實(shí)現(xiàn)
寫(xiě)在service
@BussAnnotation(moduleName="人員管理",option="添加用戶") public void testDemo1(PageData pd) throws Exception{ }
junit測(cè)試類(lèi)
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(); } } }
感謝閱讀,希望能幫助到大家,謝謝大家對(duì)本站的支持!
相關(guān)文章
jsp登錄會(huì)話的簡(jiǎn)單實(shí)現(xiàn)
下面小編就為大家?guī)?lái)一篇jsp登錄會(huì)話的簡(jiǎn)單實(shí)現(xiàn)。小編覺(jué)得挺不錯(cuò)的,現(xiàn)在就分享給大家,也給大家做個(gè)參考。一起跟隨小編過(guò)來(lái)看看吧2016-06-06在JSP頁(yè)面中獲取當(dāng)前日期時(shí)間的方法
下面小編就為大家?guī)?lái)一篇在JSP頁(yè)面中獲取當(dāng)前日期時(shí)間的方法。小編覺(jué)得挺不錯(cuò)的,現(xiàn)在就分享給大家,也給大家做個(gè)參考。一起跟隨小編過(guò)來(lái)看看吧2016-10-10jsp防止跨域提交數(shù)據(jù)的具體實(shí)現(xiàn)
這篇文章主要介紹了jsp防止跨域提交數(shù)據(jù)的具體實(shí)現(xiàn),需要的朋友可以參考下2014-02-02jsp Unsupported encoding: gb2312 錯(cuò)誤原因
今天做了一個(gè)JSP頁(yè)面,運(yùn)行時(shí)tomcat提示:org.apache.jasper.JasperException: Unsupported encoding: gb2312 錯(cuò)誤,找了很久才找到出錯(cuò)的地方,原來(lái)是一個(gè)空格惹的禍。2009-06-06response.setHeader參數(shù)、用法的介紹
response.setHeader 是用來(lái)設(shè)置返回頁(yè)面的頭 meta 信息, 使用時(shí) response.setHeader( name, contect );2008-11-11jsp實(shí)現(xiàn)生成中國(guó)國(guó)旗圖片效果代碼
這篇文章主要介紹了jsp實(shí)現(xiàn)生成中國(guó)國(guó)旗圖片效果代碼,涉及JSP圖形繪制及數(shù)學(xué)運(yùn)算的相關(guān)技巧,具有一定參考借鑒價(jià)值,需要的朋友可以參考下2015-10-10java Freemarker頁(yè)面靜態(tài)化實(shí)例詳解
這篇文章主要介紹了java Freemarker頁(yè)面靜態(tài)化實(shí)例詳解的相關(guān)資料,需要的朋友可以參考下2017-04-04JSP使用JDBC連接MYSQL數(shù)據(jù)庫(kù)的方法
這篇文章主要介紹了JSP使用JDBC連接MYSQL數(shù)據(jù)庫(kù)的方法,結(jié)合實(shí)例形式較為詳細(xì)的分析了JDBC的下載,注冊(cè)及具體使用技巧,需要的朋友可以參考下2015-12-12