利用Spring AOP与action注解为系统增加日志功能

 

  利用Spring AOP与JAVA注解为系统增加日志功能

 

Spring AOP一直是Spring的一个比较有特色的功能,利用它可以在现有的代码的任何地方,嵌入我们所想的逻辑功能,并且不需要改变我们现有的代码结构。

 

鉴于此,现在的系统已经完成了所有的功能的开发,我们需要把系统的操作日志记录起来,以方便查看某人某时执行了哪一些操作。Spring AOP可以方便查看到某人某时执行了哪一些类的哪一些方法,以及对应的参数。但是大部分终端用户看这些方法的名称时,并不知道这些方法名代码了哪一些操作,于是方法名对应的方法描述需要记录起来,并且呈现给用户。我们知道,AOP拦截了某些类某些方法后,我们可以取得这个方法的详细定义,通过详细的定义,我们可以取得这个方法对应的注解,在注解里我们就可以比较方便把方法的名称及描述写进去。于是,就有以下的注解定义。代码如下所示:

 

Java代码
 
package com.htsoft.core.log;   
  1.   
  2. import java.lang.annotation.Documented;   
  3. import java.lang.annotation.ElementType;   
  4. import java.lang.annotation.Inherited;   
  5. import java.lang.annotation.Retention;   
  6. import java.lang.annotation.RetentionPolicy;   
  7. import java.lang.annotation.Target;   
  8.   
  9.   
  10. @Target(ElementType.METHOD)      
  11. @Retention(RetentionPolicy.RUNTIME)      
  12. @Documented     
  13. @Inherited     
  14. public @interface Action {   
  15.     /** 
  16.      * 方法描述 
  17.      * @return 
  18.      */  
  19.     public String description() default "no description";    
  20. }  
package com.htsoft.core.log;

import java.lang.annotation.Documented;
import java.lang.annotation.ElementType;
import java.lang.annotation.Inherited;
import java.lang.annotation.Retention;
import java.lang.annotation.RetentionPolicy;
import java.lang.annotation.Target;

/**
 * @company  广州宏天软件有限公司
 * @description 类的方法描述注解
 * @author csx
 * @create 2010-02-03
 */
@Target(ElementType.METHOD)   
@Retention(RetentionPolicy.RUNTIME)   
@Documented  
@Inherited  
public @interface Action {
	/**
	 * 方法描述
	 * @return
	 */
	public String description() default "no description"; 
}

 

 

在我们需要拦截的方法中加上该注解:

 

 

Java代码 复制代码   收藏代码
  1. /** 
  2.  *  
  3.  * @author csx 
  4.  *  
  5.  */  
  6. public class AppUserAction extends BaseAction {    
  7.     /** 
  8.      * 添加及保存操作 
  9.      */  
  10.     @Action(description="添加或保存用户信息")   
  11.     public String save() {   
  12.              ....   
  13.         }   
  14.        /** 
  15.      * 修改密码 
  16.      *  
  17.      * @return 
  18.      */  
  19.     @Action(description="修改密码")   
  20.     public String resetPassword() {   
  21.               ....   
  22.         }   
  23. }  
/**
 * 
 * @author csx
 * 
 */
public class AppUserAction extends BaseAction {	
	/**
	 * 添加及保存操作
	 */
	@Action(description="添加或保存用户信息")
	public String save() {
             ....
        }
       /**
	 * 修改密码
	 * 
	 * @return
	 */
	@Action(description="修改密码")
	public String resetPassword() {
              ....
        }
}

 

现在设计我们的系统日志表,如下所示:

 

设计嵌入的逻辑代码,以下类为所有Struts Action的方法都需要提前执行的方法。(对于get与set的方法除外,对于没有加上Action注解的也除外)

 

Java代码 复制代码   收藏代码
  1. package com.htsoft.core.log;   
  2.   
  3. import java.lang.reflect.Method;   
  4. import java.util.Date;   
  5.   
  6. import javax.annotation.Resource;   
  7.   
  8. import org.apache.commons.lang.StringUtils;   
  9. import org.apache.commons.logging.Log;   
  10. import org.apache.commons.logging.LogFactory;   
  11. import org.aspectj.lang.ProceedingJoinPoint;   
  12.   
  13. import com.htsoft.core.util.ContextUtil;   
  14. import com.htsoft.oa.model.system.AppUser;   
  15. import com.htsoft.oa.model.system.SystemLog;   
  16. import com.htsoft.oa.service.system.SystemLogService;   
  17.   
  18. public class LogAspect {   
  19.        
  20.     @Resource  
  21.     private SystemLogService systemLogService;   
  22.        
  23.     private Log logger = LogFactory.getLog(LogAspect.class);   
  24.   
  25.     public Object doSystemLog(ProceedingJoinPoint point) throws Throwable {   
  26.   
  27.         String methodName = point.getSignature().getName();   
  28.   
  29.         // 目标方法不为空  
  30.         if (StringUtils.isNotEmpty(methodName)) {   
  31.             // set与get方法除外  
  32.             if (!(methodName.startsWith("set") || methodName.startsWith("get"))) {   
  33.   
  34.                 Class targetClass = point.getTarget().getClass();   
  35.                 Method method = targetClass.getMethod(methodName);   
  36.   
  37.                 if (method != null) {   
  38.   
  39.                     boolean hasAnnotation = method.isAnnotationPresent(Action.class);   
  40.   
  41.                     if (hasAnnotation) {   
  42.                         Action annotation = method.getAnnotation(Action.class);   
  43.                            
  44.                         String methodDescp = annotation.description();   
  45.                         if (logger.isDebugEnabled()) {   
  46.                             logger.debug("Action method:" + method.getName() + " Description:" + methodDescp);   
  47.                         }   
  48.                         //取到当前的操作用户  
  49.                         AppUser appUser=ContextUtil.getCurrentUser();   
  50.                         if(appUser!=null){   
  51.                             try{   
  52.                                 SystemLog sysLog=new SystemLog();   
  53.                                    
  54.                                 sysLog.setCreatetime(new Date());   
  55.                                 sysLog.setUserId(appUser.getUserId());   
  56.                                 sysLog.setUsername(appUser.getFullname());   
  57.                                 sysLog.setExeOperation(methodDescp);   
  58.                                    
  59.                                 systemLogService.save(sysLog);   
  60.                             }catch(Exception ex){   
  61.                                 logger.error(ex.getMessage());   
  62.                             }   
  63.                         }   
  64.                            
  65.                     }   
  66.                 }   
  67.   
  68.             }   
  69.         }   
  70.         return point.proceed();   
  71.     }   
  72.   
  73. }  
package com.htsoft.core.log;

import java.lang.reflect.Method;
import java.util.Date;

import javax.annotation.Resource;

import org.apache.commons.lang.StringUtils;
import org.apache.commons.logging.Log;
import org.apache.commons.logging.LogFactory;
import org.aspectj.lang.ProceedingJoinPoint;

import com.htsoft.core.util.ContextUtil;
import com.htsoft.oa.model.system.AppUser;
import com.htsoft.oa.model.system.SystemLog;
import com.htsoft.oa.service.system.SystemLogService;

public class LogAspect {
	
	@Resource
	private SystemLogService systemLogService;
	
	private Log logger = LogFactory.getLog(LogAspect.class);

	public Object doSystemLog(ProceedingJoinPoint point) throws Throwable {

		String methodName = point.getSignature().getName();

		// 目标方法不为空
		if (StringUtils.isNotEmpty(methodName)) {
			// set与get方法除外
			if (!(methodName.startsWith("set") || methodName.startsWith("get"))) {

				Class targetClass = point.getTarget().getClass();
				Method method = targetClass.getMethod(methodName);

				if (method != null) {

					boolean hasAnnotation = method.isAnnotationPresent(Action.class);

					if (hasAnnotation) {
						Action annotation = method.getAnnotation(Action.class);
						
						String methodDescp = annotation.description();
						if (logger.isDebugEnabled()) {
							logger.debug("Action method:" + method.getName() + " Description:" + methodDescp);
						}
						//取到当前的操作用户
						AppUser appUser=ContextUtil.getCurrentUser();
						if(appUser!=null){
							try{
								SystemLog sysLog=new SystemLog();
								
								sysLog.setCreatetime(new Date());
								sysLog.setUserId(appUser.getUserId());
								sysLog.setUsername(appUser.getFullname());
								sysLog.setExeOperation(methodDescp);
								
								systemLogService.save(sysLog);
							}catch(Exception ex){
								logger.error(ex.getMessage());
							}
						}
						
					}
				}

			}
		}
		return point.proceed();
	}

}
 

通过AOP配置该注入点:

 

Java代码 复制代码   收藏代码
  1.     
  2. "logAspect" class="com.htsoft.core.log.LogAspect"/>     
  3.     
  4.         "logAspect">   
  5.             "logPointCut" expression="execution(* com.htsoft.oa.action..*(..))"/>   
  6.             "logPointCut" method="doSystemLog"/>   
  7.            
  8.   
 

  注意,由于AOP的默认配置是使用代理的方式进行嵌入代码运行,而StrutsAction中若继承了ActionSupport会报错误,错误是由于其使用了默认的实现接口而引起的。所以Action必须为POJO类型。

 

如我们操作了后台的修改密码,保存用户信息的操作后,系统日志就会记录如下的情况。

 

 

 

上面是我转载的http://man1900.iteye.com/blog/648107

上面有一点阐述的注意解决方法: 更改成

 

通过配置织入@Aspectj切面

虽然可以通过编程的方式织入切面,但是一般情况下,我们还是使用spring的配置自动完成创建代理织入切面的工作。

通过aop命名空间的 />声明自动为spring容器中那些配置@aspectJ切面的bean创建代理,织入切面。当然,spring

在内部依旧采用AnnotationAwareAspectJAutoProxyCreator进行自动代理的创建工作,但具体实现的细节已经被 />隐藏起来了

/>有一个proxy-target-class属性,默认为false,表示使用jdk动态代理织入增强,当配为 poxy-target-class="true"/>时,表示使用CGLib动态代理技术织入增强。不过即使proxy-target-class设置为false,如果目标类没有声明接口,则spring将自动使用CGLib动态代理。

你可能感兴趣的:(利用Spring AOP与action注解为系统增加日志功能)