Springboot Aop Unified Processing Web request log

Source: Internet
Author: User
Tags aop

1. Increase dependency
<dependency>            <groupId>org.springframework.boot</groupId>            <artifactId> Spring-boot-starter-aop</artifactid>        </dependency>
2. Writing Slice Classes
@Aspect @component  Public class Weblogaspect {}

The annotation @Aspect indicates that this is a slice class

3. Defining pointcuts
@Pointcut ("Execution (* com.example.manage.controller.*.* (..))" )    publicvoid pointlog () {}

Indicates that the pointcut is all methods of all classes under the Com.example.manage.controller path

4. Defining what to cut into
@Before ("Pointlog ()")     Public voidDobefore (Joinpoint joinpoint) {//receive request, log request contentServletrequestattributes attributes =(servletrequestattributes) requestcontextholder.getrequestattributes (); HttpServletRequest Request=attributes.getrequest (); Logger.info ("URL:" +Request.getrequesturl (). toString ()); Logger.info ("Http_method:" +Request.getmethod ()); Logger.info ("IP:" +request.getremoteaddr ()); Logger.info ("Class_method:" + joinpoint.getsignature (). Getdeclaringtypename () + "." +joinpoint.getsignature (). GetName ()); Logger.info ("ARGS:" +arrays.tostring (Joinpoint.getargs ())); }

Print request information before executing method

@AfterReturning (returning = "res", Pointcut = "Pointlog ()")    publicvoidthrows  throwable {        //  finished processing the request, return content        logger.info ("RESPONSE:" + res.tostring ()); c11/>}

After execution, print the returned content

Complete!

=====================================================================

Springboot Aop Unified Processing Web request log

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.