LogRequestAspect.kt 4.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127
  1. package com.gxzc.zen.logging.aop
  2. import com.fasterxml.jackson.databind.ObjectMapper
  3. import com.gxzc.zen.logging.annotation.LogAnnotation
  4. import com.gxzc.zen.logging.model.LogRequest
  5. import com.gxzc.zen.logging.util.MQLogUtil
  6. import org.aspectj.lang.ProceedingJoinPoint
  7. import org.aspectj.lang.annotation.Around
  8. import org.aspectj.lang.annotation.Aspect
  9. import org.aspectj.lang.annotation.Pointcut
  10. import org.aspectj.lang.reflect.MethodSignature
  11. import org.slf4j.LoggerFactory
  12. import org.springframework.beans.factory.annotation.Autowired
  13. import org.springframework.core.annotation.Order
  14. import org.springframework.stereotype.Component
  15. import org.springframework.web.bind.annotation.RequestBody
  16. import org.springframework.web.context.request.RequestContextHolder
  17. import org.springframework.web.context.request.ServletRequestAttributes
  18. import java.util.*
  19. /**
  20. *
  21. * @author NorthLan
  22. * @date 2018/8/23
  23. * @url https://noahlan.com
  24. */
  25. @Suppress("unused")
  26. @Aspect
  27. @Order(1)
  28. @Component
  29. class LogRequestAspect {
  30. companion object {
  31. private val logger = LoggerFactory.getLogger(LogRequestAspect::class.java)
  32. }
  33. @Autowired
  34. private lateinit var mapper: ObjectMapper
  35. /**
  36. * 拦截所有 Controller结尾 的所有方法
  37. */
  38. @Pointcut("execution(* com.gxzc.zen..*Controller.*(..)))")
  39. fun controllerCut() {
  40. }
  41. @Around("controllerCut()")
  42. fun after(joinPoint: ProceedingJoinPoint): Any? {
  43. val method = (joinPoint.signature as MethodSignature).method
  44. val logAnnotation = method.getAnnotation(LogAnnotation::class.java)
  45. var remark: String? = null
  46. if (logAnnotation != null) {
  47. if (logAnnotation.ignore) {
  48. return joinPoint.proceed()
  49. }
  50. remark = logAnnotation.remark
  51. }
  52. val fullMethodName = method.declaringClass.name + "." + method.name
  53. var requestBody: Any? = null
  54. var i = -1
  55. method.parameterAnnotations.forEach { annotations ->
  56. ++i
  57. annotations.forEach {
  58. if (it is RequestBody) {
  59. requestBody = joinPoint.args[i]
  60. }
  61. }
  62. }
  63. val attr = RequestContextHolder.getRequestAttributes() as? ServletRequestAttributes
  64. ?: return joinPoint.proceed()
  65. val request = attr.request
  66. val requestUri = request.requestURI
  67. val remoteHost = request.remoteHost
  68. val requestMethod = request.method
  69. val requestParam = request.queryString
  70. val data = LogRequest().apply {
  71. this.requestUri = requestUri
  72. this.requestMethod = requestMethod
  73. this.requestParam = requestParam
  74. this.requestBody = mapper.writeValueAsString(requestBody)
  75. // this.responseBody = mapper.writeValueAsString(result)
  76. this.remoteHost = remoteHost
  77. this.method = fullMethodName
  78. // this.exMsg = exMsg
  79. this.remark = remark
  80. }
  81. val startTime = Date()
  82. return try {
  83. val result = joinPoint.proceed()
  84. data.apply {
  85. this.responseBody = mapper.writeValueAsString(result)
  86. this.operatorStartTime = startTime
  87. this.operatorEndTime = Date()
  88. }
  89. MQLogUtil.logRequest(data)
  90. result
  91. } catch (e: Throwable) {
  92. // 运行时异常(保留5最近异常栈)
  93. var exMsg = e.javaClass.name + " : " + e.message + "\r\n"
  94. run breaking@{
  95. e.stackTrace.forEachIndexed { index, it ->
  96. if (index > 4) {
  97. return@breaking
  98. }
  99. exMsg += it
  100. exMsg += "\r\n"
  101. }
  102. }
  103. exMsg += "......"
  104. data.apply {
  105. this.exMsg = exMsg
  106. this.operatorStartTime = startTime
  107. this.operatorEndTime = Date()
  108. }
  109. MQLogUtil.logRequest(data)
  110. throw e
  111. }
  112. }
  113. }