The use of @around annotations in aspect programming

Source: Internet
Author: User
Tags aop

Aspect-oriented programming allows us to monitor the system. AOP is being studied recently, and @around should use the most. We can get the name of the connection point and the class name in the slice logic. Convenient for us to quickly locate problems in the system.

Example:

This annotation must be required @Component///sping integration, otherwise the Sping container will not resolve the slice and cause the slice to not work
@Aspect
public class Aopconfig {

@Pointcut (value= "Execution (* spring.aop.demo.* (..))")
public void PointCut () {
}

@Around ("PointCut ()")
Public Object Aroundmethod (Proceedingjoinpoint pjp) throws Throwable {
Object OB = null;
System.out.println (Pjp.getsignature (). Getdeclaringtype ());

Gets the signature object through the PJP object that encapsulates the information for the connection point. For example, to get the class object of the connection point in the Getdeclaringtype

GetName gets the name of the connection point, which is the method name.


        system.out.println ("---------------------------");
        pjp.proceed ();
        system.out.println ("---------------------------");
      
        
       & Nbsp;return ob;
        
    

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.