public class UserRequestLogger extends BaseController {
private Logger logger = LoggerFactory.getLogger(UserRequestLogger.class);
public void loggerUserRequest(JoinPoint joinPoint) {
try {
HttpServletRequest request = ((ServletRequestAttributes) RequestContextHolder.getRequestAttributes()).getRequest();
if (request == null) {
return;
}
String sessionId = null;
HttpSession session = request.getSession(false);
if (session != null) {
sessionId = session.getId();
}
String username = super.getCurrentUsername();
//此方法返回的是一个数组,数组中包括request以及ActionCofig等类对象
Object[] args = joinPoint.getArgs();
StringBuffer classUrl = new StringBuffer(request.getRequestURI());
StringBuffer classpath = new StringBuffer();
StringBuffer classvalue = new StringBuffer();
StringBuffer clValueOld = new StringBuffer();
try {
classpath.append(joinPoint.getSignature().getDeclaringTypeName() + "." + joinPoint.getSignature().getName());
Method[] methods = joinPoint.getTarget().getClass().getDeclaredMethods();
for (Method method : methods) {
if (method == null) {
continue;
}
if (!method.getName().equals(joinPoint.getSignature().getName())) {
continue;
}
classpath.append("(");
boolean hasParam = false;
for (Class ss : method.getParameterTypes()) {
if (ss == null) {
continue;
}
classpath.append(ss.getName() + ",");
hasParam = true;
}
if (hasParam) {
classpath = new StringBuffer(classpath.substring(0, classpath.length() - 1)).append(")");
} else {
classpath.append(")");
}
break;
}
if (args != null && args.length > 0) {
for (Object object : args) {
if (object == null) {
continue;
}
Class clazz = object.getClass();// 获取集合中的对象类型
if (HttpServletRequest.class == clazz || javax.servlet.http.HttpServletResponse.class == clazz
|| clazz.toString().indexOf("org.springframework") >= 0) {
continue;
}
if (clazz.getDeclaredConstructors() != null && clazz.getDeclaredConstructors().length > 0) {
classvalue.append(clazz.getDeclaredConstructors()[0].getName() + "=");
}
if (String.class == clazz || Long.class == clazz || Boolean.class == clazz
|| Double.class == clazz || Integer.class == clazz || Short.class == clazz
|| Float.class == clazz) {
classvalue.append(object + ",");
} else {
Field[] fds = clazz.getDeclaredFields();// 获取他的字段数组
if (fds != null && fds.length > 0) {
classvalue.append("{");
for (Field field : fds) {// 遍历该数组
if (field == null) {
continue;
}
try {
String fdname = field.getName();// 得到字段名,
Method metd = clazz.getMethod("get" + change(fdname), null);// 根据字段名找到对应的get方法,null表示无参数
Object name = metd.invoke(object, null);// 调用该字段的get方法
if (name != null) {
classvalue.append(fdname + ":" + name + ",");
}
} catch (NoSuchMethodException e) {
} catch (SecurityException e) {
} catch (IllegalAccessException e) {
} catch (IllegalArgumentException e) {
} catch (InvocationTargetException e) {
}
}
classvalue = new StringBuffer(classvalue.substring(0, classvalue.length() - 1)).append("},");
}
}
}
}
} catch (SecurityException e) {
e.printStackTrace();
logger.error("error:====inner error=====" + e.getMessage());
}
StringBuffer logStr = new StringBuffer(username + "|" + IPUtil.getIpAddr(request) + "|" + "|" + sessionId + "|");
logStr.append(classUrl).append("|").append(classvalue);
logger.info(logStr.toString());
} catch (Exception e) {
e.printStackTrace();
logger.error("error:====error==============" + e.getMessage());
}
}
/**
* @param src 源字符串
* @return 字符串,将src的第一个字母转换为大写,src为空时返回null
*/
private static String change(String src) {
if (src != null) {
StringBuffer sb = new StringBuffer(src);
sb.setCharAt(0, Character.toUpperCase(sb.charAt(0)));
return sb.toString();
} else {
return null;
}
}
}
//配置
<!--aop用户请求日志-->
<aop:config>
<aop:pointcut id="userLoggerPointcut" expression="execution(* com.xxx.web.controller.*.*(..))"/>
<aop:aspect id="loggerAspect" ref="genericLoggerBean">
<aop:around pointcut-ref="userLoggerPointcut" method="loggerUserRequest"/>
</aop:aspect>
</aop:config>
<bean id="genericLoggerBean"
class="com.xxx.web.aop.UserRequestLogger">
</bean>
//效果
13:51:28.820 - 【13400000000】【192.168.1.2】【BB3F6A48072070D85403A59E4EFB0715】【/androidIos/listQianbaoGotPerson.html】【com.xxx.web.controller.AndroidIosController.listQianbaoGotPerson(com.xxx.view.PaginationView,int)】【com.hyip.view.PaginationView={iTotalRecords:0,iTotalDisplayRecords:0},java.lang.Integer=1】
分享到:
相关推荐
在这个例子中,`LoggingAspect`定义了一个切面,`logBefore`方法作为前置通知。`@Before`注解中的切入点表达式`execution(* com.example.service.MyService.*(..))`匹配`MyService`类中所有方法的执行。 **4. 切入...
在"AopLog4jLearn"这个压缩包中,可能包含了关于这个主题的示例代码、配置文件和其他相关资料。读者可以通过学习这些材料,更深入地理解Spring AOP和Log4j的结合使用,以及如何在实际项目中应用动态日志功能。
<aop:before method="logBefore" pointcut="execution(* com.example.service.*.*(..))"/> <aop:after method="logAfter" pointcut="execution(* com.example.service.*.*(..))"/> <aop:around method="logAround...
在SSH+AOP的场景下,注解常用于标记需要拦截的方法,例如在方法上使用Spring的`@Before`、`@After`等注解,指定AOP切面的行为。 在"TestSSH"这个文件中,可能包含了示例代码或测试用例,用于演示如何将这些技术整合...
<aop:before method="yourAdviceMethod" pointcut-ref="yourPointcutId"/> </aop:aspect> </aop:config> ``` - 同时,还需要在配置文件中开启AOP的支持: ```xml <aop:aspectj-autoproxy proxy-target-class=...
每次目标方法被调用时,`AOPLog`中的`logBefore()`方法都会在目标方法执行前被调用,从而实现日志记录。 总结,通过Spring的AOP功能,我们可以轻松地实现日志记录、事务管理和其他横切关注点,而无需侵入业务代码。...
Logback是广泛使用的日志框架,它由log4j的创始人Ceki Gülcü创建,提供了高效且灵活的日志处理能力。本教程将深入探讨如何在Spring Boot中集成Logback,并利用AOP(面向切面编程)来拦截并记录请求日志信息。 ...
顾名思义,Before Advice会在目标对象的方法执行之前被调用,您可以通过实现org.springframework.aop.MethodBeforeAdvice接口来实现Before Advice的逻辑,接口定义如下: java 代码 1. package org.spring...
通知类型包括前置通知(before)、后置通知(after)、环绕通知(around)等。 1. **自定义注解**: 我们可以创建一个自定义注解,如`@Loggable`,并将这个注解应用到我们想要拦截的方法上。这样,我们可以指定...
<aop:before method="logBefore" pointcut="execution(* com.example.service.*.*(..))"/> </aop:aspect> </aop:config> ``` 在上述XML配置中,我们定义了一个切面,并指定了`WriteLogAspect`类及其`logBefore`...
<aop:before method="logBefore" pointcut="execution(* com.example.service.*.*(..))"/> </aop:aspect> </aop:config> ``` 在上面的例子中,`loggingService`是包含日志记录逻辑的服务,`logBefore`方法...
<aop:before method="logBefore" pointcut="execution(* com.example.service.*.*(..))"/> </aop:aspect> </aop:config> ``` 在这个例子中,`@Before`注解表示`logBefore`方法会在匹配的方法执行前被调用。切面...
<aop:before method="logBefore" pointcut="execution(* com.example.service.*.*(..))"/> </aop:aspect> </aop:aspect> ``` 这里,`loggingAspectBean`是切面类的bean引用,`logBefore`方法对应于`@Before`注解...
<aop:before method="logBefore" pointcut="execution(* com.example.service.*.*(..))"/> </aop:aspect> </aop:config> ``` 3. **创建服务类**:定义一个被切面拦截的服务类,例如`UserService`,包含一个方法...
public void logBefore(JoinPoint joinPoint) { // 在方法执行前记录日志 } @AfterReturning("execution(* com.example.service.*.*(..))") public void logAfterReturning(JoinPoint joinPoint, Object ...
<aop:before method="logBefore" pointcut-ref="businessMethods"/> <aop:after-returning method="logAfterReturning" pointcut-ref="businessMethods"/> </aop:aspect> <aop:pointcut id="businessMethods" ...
<aop:before method="logBefore" pointcut="execution(* com.example.service.*.*(..))"/> <aop:after method="logAfter" pointcut="execution(* com.example.service.*.*(..))"/> </aop:aspect> </aop:config> ...
<aop:before method="logBefore" pointcut="execution(* com.example.service.*.*(..))"/> <aop:after-returning method="logAfterReturning" pointcut="execution(* com.example.service.*.*(..))"/> </aop:...
<aop:before method="logBefore" pointcut="execution(* com.example.service.*.*(..))"/> <!-- 后置通知 --> <aop:after method="logAfter" pointcut="execution(* com.example.service.*.*(..))"/> <!-- ...
<aop:before method="logBefore" pointcut="execution(* com.example.*.*(..))"/> </aop:aspect> </aop:aspect> ``` 在注解配置中,可以定义切面和切点: ```java @Aspect @Component public class ...