SlideShare a Scribd company logo
Java Spring Training
Spring AOP – Aspect Oriented Programming
Page 1Classification: Restricted
Review
• Spring framework
• Inversion of Control
• Dependency Injection – Two types
• Defining beans using XML
• Inheriting beans
• Auto-wiring
• Annotations based configuration
• Java based configuration
Page 2Classification: Restricted
Agenda
• Spring AOP
• What is AOP
• AOP Terminologies
• AOP Implementations
Java & JEE Training
Spring AOP using AspectJ
Page 4Classification: Restricted
What is Aspect Oriented Programming?
• Oriented Programming entails breaking down program logic into distinct
parts called so-called concerns.
• The functions that span multiple points of an application are called cross-
cutting concerns and these cross-cutting concerns are conceptually
separate from the application's business logic.
• Examples of aspects like
• logging
• auditing
• declarative transactions
• Security
• caching
Page 5Classification: Restricted
AOP does not replace OOP but makes it better
• The key unit of modularity in OOP is the class, whereas in AOP the unit of
modularity is the aspect.
• Dependency Injection helps you decouple your application objects from
each other and AOP helps you decouple cross-cutting concerns from the
objects that they affect.
Page 6Classification: Restricted
AOP
Page 7Classification: Restricted
AOP Terminologies
Terms Description
Aspect A module which has a set of APIs providing cross-cutting requirements.
For example, a logging module would be called AOP aspect for logging.
An application can have any number of aspects depending on the
requirement.
Join point This represents a point in your application where you can plug-in AOP
aspect. You can also say, it is the actual place in the application where an
action will be taken using Spring AOP framework.
Advice This is the actual action to be taken either before or after the method
execution. This is actual piece of code that is invoked during program
execution by Spring AOP framework.
Pointcut This is a set of one or more joinpoints where an advice should be
executed. You can specify pointcuts using expressions or patterns as we
will see in our AOP examples.
Weaving Weaving is the process of linking aspects with other application types or
objects to create an advised object. This can be done at compile time,
load time, or at runtime. Spring AOP performs weaving at runtime.
Page 8Classification: Restricted
Typical AOP implementations…
• AspectJ (Recommended by Spring framework)
• Spring AOP
• JBoss AOP
Page 9Classification: Restricted
Spring AOP AspectJ implementations
• By Annotation
• By XML Configuration
Page 10Classification: Restricted
Spring AspectJ AOP
Spring AspectJ AOP implementation provides many annotations:
• @Aspect declares the class as aspect.
• @Pointcut declares the pointcut expression.
The annotations used to create advices are given below:
• @Before declares the before advice. It is applied before calling the actual method.
• @After declares the after advice. It is applied after calling the actual method and
before returning result.
• @AfterReturning declares the after returning advice. It is applied after calling the
actual method and before returning result. But you can get the result value in the
advice.
• @Around declares the around advice. It is applied before and after calling the
actual method.
• @AfterThrowing declares the throws advice. It is applied if actual method throws
exception.
Page 11Classification: Restricted
• Before Advice: These advices runs before the execution of join point methods. We can use
@Before annotation to mark an advice type as Before advice.
• After (finally) Advice: An advice that gets executed after the join point method finishes
executing, whether normally or by throwing an exception. We can create after advice using
@After annotation.
• After Returning Advice: Sometimes we want advice methods to execute only if the join point
method executes normally. We can use @AfterReturning annotation to mark a method as
after returning advice.
• After Throwing Advice: This advice gets executed only when join point method throws
exception, we can use it to rollback the transaction declaratively. We use @AfterThrowing
annotation for this type of advice.
• Around Advice: This is the most important and powerful advice. This advice surrounds the join
point method and we can also choose whether to execute the join point method or not. We
can write advice code that gets executed before and after the execution of the join point
method. It is the responsibility of around advice to invoke the join point method and return
values if the method is returning something. We use @Around annotation to create around
advice methods.
Page 12Classification: Restricted
Pointcut
@Pointcut("execution(* Operation.*(..))")
private void doSomething() {}
• The name of the pointcut expression is doSomething(). It will be applied on
all the methods of Operation class regardless of return type.
Page 13Classification: Restricted
Pointcut examples
Expression Example Meaning
@Pointcut("execution(public * *(..))") applied on all the public methods.
@Pointcut("execution(public Operation.*(..))") applied on all the public methods
of Operation class.
@Pointcut("execution(* Operation.*(..))") applied on all the methods of
Operation class.
@Pointcut("execution(public Employee.set*(..))") applied on all the public setter
methods of Employee class.
@Pointcut("execution(int Operation.*(..))") applied on all the methods of
Operation class that returns int
value.
Page 14Classification: Restricted
AOP Example
// Operation.java
public class Operation{
public void msg(){System.out.println("msg method invoked");}
public int m(){System.out.println("m method invoked");return 2;}
public int k(){System.out.println("k method invoked");return 3;}
}
Page 15Classification: Restricted
AOP Example
//The Aspect Class that contains Before advice
import org.aspectj.lang.JoinPoint;
import org.aspectj.lang.annotation.Aspect;
import org.aspectj.lang.annotation.Before;
import org.aspectj.lang.annotation.Pointcut;
@Aspect
public class TrackOperation{
@Pointcut("execution(* Operation.*(..))")
public void ptcut(){}//pointcut name
@Before(“ptcut()")//applying pointcut on before advice
public void myadvice(JoinPoint jp)//it is advice (before advice)
{
System.out.println("additional concern");
//System.out.println("Method Signature: " + jp.getSignature());
}
}
Page 16Classification: Restricted
Beans.xml
<?xml version="1.0" encoding="UTF-8"?>
<beans xmlns="http://www.springframework.org/schema/beans"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xmlns:aop="http://www.springframework.org/schema/aop"
xsi:schemaLocation="http://www.springframework.org/schema/beans
http://www.springframework.org/schema/beans/spring-beans.xsd
http://www.springframework.org/schema/aop
http://www.springframework.org/schema/aop/spring-aop.xsd">
<aop:aspectj-autoproxy/>
<bean id="opBean" class=“demo.Operation"> </bean>
<bean id="trackMyBean" class=“demo.TrackOperation"></bean>
</beans>
Page 17Classification: Restricted
More examples: @After
import org.aspectj.lang.JoinPoint;
import org.aspectj.lang.annotation.Aspect;
import org.aspectj.lang.annotation.After;
import org.aspectj.lang.annotation.Pointcut;
@Aspect
public class TrackOperation{
@Pointcut("execution(* Operation.*(..))")
public void k(){}//pointcut name
@After("k()")//applying pointcut on after advice
public void myadvice(JoinPoint jp)//it is advice (after advice)
{
System.out.println("additional concern");
//System.out.println("Method Signature: " + jp.getSignature());
}
}
Page 18Classification: Restricted
More example: @AfterReturning
import org.aspectj.lang.JoinPoint;
import org.aspectj.lang.annotation.AfterReturning;
import org.aspectj.lang.annotation.Aspect;
@Aspect
public class TrackOperation{
@AfterReturning(pointcut = "execution(* Operation.*(..))", returning= "result")
public void myadvice(JoinPoint jp,Object result){ //ADVICE
System.out.println("additional concern");
System.out.println("Method Signature: " + jp.getSignature());
System.out.println("Result in advice: "+result);
System.out.println("end of after returning advice...");
}
}
Page 19Classification: Restricted
More example: @Around
import org.aspectj.lang.ProceedingJoinPoint;
import org.aspectj.lang.annotation.Around;
import org.aspectj.lang.annotation.Aspect;
import org.aspectj.lang.annotation.Pointcut;
@Aspect
public class TrackOperation
{
@Pointcut("execution(* Operation.*(..))")
public void abcPointcut(){}
@Around("abcPointcut()")
public Object myadvice(ProceedingJoinPoint pjp) throws Throwable
{
System.out.println("Additional Concern Before calling actual method");
Object obj=pjp.proceed();
System.out.println("Additional Concern After calling actual method");
return obj;
}
}
//Note: You need to pass the PreceedingJoinPoint reference in the advice method, so that we can proceed the
request by calling the proceed() method.
Page 20Classification: Restricted
More examples: @AfterThrowing
import org.aspectj.lang.JoinPoint;
import org.aspectj.lang.annotation.AfterThrowing;
import org.aspectj.lang.annotation.Aspect;
@Aspect
public class TrackOperation{
@AfterThrowing(
pointcut = "execution(* Operation.*(..))",
throwing= "error")
public void myadvice(JoinPoint jp,Throwable error)//it is advice
{
System.out.println("additional concern");
System.out.println("Method Signature: " + jp.getSignature());
System.out.println("Exception is: "+error);
System.out.println("end of after throwing advice...");
}
}
Page 21Classification: Restricted
Spring – AspectJ AOP – XML configuration - Example
<aop:config>
<aop:aspect id="myaspect" ref="trackAspect" >
<!-- @Before -->
<aop:pointcut id="pointCutBefore" expression="execution(* com.javatpo
int.Operation.*(..))" />
<aop:before method="myadvice" pointcut-ref="pointCutBefore" />
</aop:aspect>
</aop:config>
Page 22Classification: Restricted
Jars needed for AspectJ
• aspectjrt.jar
• aspectjweaver.jar
• aspectj.jar
• aopalliance.jar
Page 23Classification: Restricted
Topics to be covered in next session
• Spring MVC
• Spring MVC – Hibernate Integration
Page 24Classification: Restricted
Thank you!

More Related Content

PPSX
Hibernate - Part 2
PPSX
JSP - Part 1
PPSX
Struts 2 - Hibernate Integration
PDF
Hibernate Interview Questions
PPSX
Java IO, Serialization
PPTX
Session 45 - Spring - Part 3 - AOP
PPTX
Session 38 - Core Java (New Features) - Part 1
PPSX
Struts 2 - Introduction
Hibernate - Part 2
JSP - Part 1
Struts 2 - Hibernate Integration
Hibernate Interview Questions
Java IO, Serialization
Session 45 - Spring - Part 3 - AOP
Session 38 - Core Java (New Features) - Part 1
Struts 2 - Introduction

What's hot (19)

PPSX
JDBC Part - 2
PPTX
Session 43 - Spring - Part 1 - IoC DI Beans
DOC
24 collections framework interview questions
PDF
Bea weblogic job_interview_preparation_guide
PPSX
Hibernate - Part 1
ODP
Hibernate Developer Reference
PDF
Java interview questions
PPSX
Spring - Part 1 - IoC, Di and Beans
PDF
Hibernate Presentation
PPTX
Spring & hibernate
PPT
Java interview-questions-and-answers
PPTX
Technical Interview
PPTX
Session 40 - Hibernate - Part 2
PPTX
Hibernate in Action
PPSX
JSP - Part 2 (Final)
PDF
Hibernate Advance Interview Questions
PPS
Java Hibernate Programming with Architecture Diagram and Example
ODP
Spring 4 final xtr_presentation
PDF
9 crucial Java Design Principles you cannot miss
JDBC Part - 2
Session 43 - Spring - Part 1 - IoC DI Beans
24 collections framework interview questions
Bea weblogic job_interview_preparation_guide
Hibernate - Part 1
Hibernate Developer Reference
Java interview questions
Spring - Part 1 - IoC, Di and Beans
Hibernate Presentation
Spring & hibernate
Java interview-questions-and-answers
Technical Interview
Session 40 - Hibernate - Part 2
Hibernate in Action
JSP - Part 2 (Final)
Hibernate Advance Interview Questions
Java Hibernate Programming with Architecture Diagram and Example
Spring 4 final xtr_presentation
9 crucial Java Design Principles you cannot miss
Ad

Similar to Spring - Part 3 - AOP (20)

PPTX
Spring aop concepts
PPTX
PPT
Spring AOP
PPTX
Introduction to Aspect Oriented Programming
PPTX
Spring framework part 2
PPTX
Spring aop
PDF
PPTX
spring aop
PPTX
Introduction to Spring
PPTX
Spring AOP in Nutshell
PDF
Spring aop
PDF
Spring Framework
PPTX
Spring 1 day program
PPTX
Spring framework AOP
PDF
AOP (Aspect-Oriented Programming) spring boot
PPTX
Aspect Oriented Programming: Hidden Toolkit That You Already Have
PPTX
Spring aop
PPTX
Playing with Java Classes and Bytecode
PPTX
Aspect Oriented Programming
PPTX
Spring aop concepts
Spring AOP
Introduction to Aspect Oriented Programming
Spring framework part 2
Spring aop
spring aop
Introduction to Spring
Spring AOP in Nutshell
Spring aop
Spring Framework
Spring 1 day program
Spring framework AOP
AOP (Aspect-Oriented Programming) spring boot
Aspect Oriented Programming: Hidden Toolkit That You Already Have
Spring aop
Playing with Java Classes and Bytecode
Aspect Oriented Programming
Ad

More from Hitesh-Java (20)

PPSX
Spring - Part 4 - Spring MVC
PPSX
Spring - Part 2 - Autowiring, Annotations, Java based Configuration - slides
PPSX
PPSX
Inner Classes
PPSX
Collections - Maps
PPSX
Review Session - Part -2
PPSX
Review Session and Attending Java Interviews
PPSX
Collections - Lists, Sets
PPSX
Collections - Sorting, Comparing Basics
PPSX
Collections - Array List
PPSX
Object Class
PPSX
Exception Handling - Continued
PPSX
Exception Handling - Part 1
PPSX
OOPs with Java - Packaging and Access Modifiers
PPSX
OOP with Java - Abstract Classes and Interfaces
PPSX
OOP with Java - Part 3
PPSX
OOP with Java - Continued
PPSX
Intro to Object Oriented Programming with Java
PPSX
Practice Session
PPSX
Strings in Java
Spring - Part 4 - Spring MVC
Spring - Part 2 - Autowiring, Annotations, Java based Configuration - slides
Inner Classes
Collections - Maps
Review Session - Part -2
Review Session and Attending Java Interviews
Collections - Lists, Sets
Collections - Sorting, Comparing Basics
Collections - Array List
Object Class
Exception Handling - Continued
Exception Handling - Part 1
OOPs with Java - Packaging and Access Modifiers
OOP with Java - Abstract Classes and Interfaces
OOP with Java - Part 3
OOP with Java - Continued
Intro to Object Oriented Programming with Java
Practice Session
Strings in Java

Recently uploaded (20)

PDF
CIFDAQ's Teaching Thursday: Moving Averages Made Simple
PPTX
The-Ethical-Hackers-Imperative-Safeguarding-the-Digital-Frontier.pptx
PPTX
Comunidade Salesforce São Paulo - Desmistificando o Omnistudio (Vlocity)
PDF
NewMind AI Weekly Chronicles - August'25 Week I
PDF
NewMind AI Monthly Chronicles - July 2025
PDF
Security features in Dell, HP, and Lenovo PC systems: A research-based compar...
PDF
Top Generative AI Tools for Patent Drafting in 2025.pdf
PDF
Enable Enterprise-Ready Security on IBM i Systems.pdf
PPTX
How Much Does It Cost to Build a Train Ticket App like Trenitalia in Italy.pptx
PDF
CIFDAQ's Market Wrap: Ethereum Leads, Bitcoin Lags, Institutions Shift
PDF
madgavkar20181017ppt McKinsey Presentation.pdf
PDF
How-Cloud-Computing-Impacts-Businesses-in-2025-and-Beyond.pdf
PDF
Chapter 2 Digital Image Fundamentals.pdf
PDF
Orbitly Pitch Deck|A Mission-Driven Platform for Side Project Collaboration (...
PDF
Automating ArcGIS Content Discovery with FME: A Real World Use Case
PDF
Using Anchore and DefectDojo to Stand Up Your DevSecOps Function
PPTX
Telecom Fraud Prevention Guide | Hyperlink InfoSystem
PDF
NewMind AI Weekly Chronicles - July'25 - Week IV
PDF
Reimagining Insurance: Connected Data for Confident Decisions.pdf
PDF
A Day in the Life of Location Data - Turning Where into How.pdf
CIFDAQ's Teaching Thursday: Moving Averages Made Simple
The-Ethical-Hackers-Imperative-Safeguarding-the-Digital-Frontier.pptx
Comunidade Salesforce São Paulo - Desmistificando o Omnistudio (Vlocity)
NewMind AI Weekly Chronicles - August'25 Week I
NewMind AI Monthly Chronicles - July 2025
Security features in Dell, HP, and Lenovo PC systems: A research-based compar...
Top Generative AI Tools for Patent Drafting in 2025.pdf
Enable Enterprise-Ready Security on IBM i Systems.pdf
How Much Does It Cost to Build a Train Ticket App like Trenitalia in Italy.pptx
CIFDAQ's Market Wrap: Ethereum Leads, Bitcoin Lags, Institutions Shift
madgavkar20181017ppt McKinsey Presentation.pdf
How-Cloud-Computing-Impacts-Businesses-in-2025-and-Beyond.pdf
Chapter 2 Digital Image Fundamentals.pdf
Orbitly Pitch Deck|A Mission-Driven Platform for Side Project Collaboration (...
Automating ArcGIS Content Discovery with FME: A Real World Use Case
Using Anchore and DefectDojo to Stand Up Your DevSecOps Function
Telecom Fraud Prevention Guide | Hyperlink InfoSystem
NewMind AI Weekly Chronicles - July'25 - Week IV
Reimagining Insurance: Connected Data for Confident Decisions.pdf
A Day in the Life of Location Data - Turning Where into How.pdf

Spring - Part 3 - AOP

  • 1. Java Spring Training Spring AOP – Aspect Oriented Programming
  • 2. Page 1Classification: Restricted Review • Spring framework • Inversion of Control • Dependency Injection – Two types • Defining beans using XML • Inheriting beans • Auto-wiring • Annotations based configuration • Java based configuration
  • 3. Page 2Classification: Restricted Agenda • Spring AOP • What is AOP • AOP Terminologies • AOP Implementations
  • 4. Java & JEE Training Spring AOP using AspectJ
  • 5. Page 4Classification: Restricted What is Aspect Oriented Programming? • Oriented Programming entails breaking down program logic into distinct parts called so-called concerns. • The functions that span multiple points of an application are called cross- cutting concerns and these cross-cutting concerns are conceptually separate from the application's business logic. • Examples of aspects like • logging • auditing • declarative transactions • Security • caching
  • 6. Page 5Classification: Restricted AOP does not replace OOP but makes it better • The key unit of modularity in OOP is the class, whereas in AOP the unit of modularity is the aspect. • Dependency Injection helps you decouple your application objects from each other and AOP helps you decouple cross-cutting concerns from the objects that they affect.
  • 8. Page 7Classification: Restricted AOP Terminologies Terms Description Aspect A module which has a set of APIs providing cross-cutting requirements. For example, a logging module would be called AOP aspect for logging. An application can have any number of aspects depending on the requirement. Join point This represents a point in your application where you can plug-in AOP aspect. You can also say, it is the actual place in the application where an action will be taken using Spring AOP framework. Advice This is the actual action to be taken either before or after the method execution. This is actual piece of code that is invoked during program execution by Spring AOP framework. Pointcut This is a set of one or more joinpoints where an advice should be executed. You can specify pointcuts using expressions or patterns as we will see in our AOP examples. Weaving Weaving is the process of linking aspects with other application types or objects to create an advised object. This can be done at compile time, load time, or at runtime. Spring AOP performs weaving at runtime.
  • 9. Page 8Classification: Restricted Typical AOP implementations… • AspectJ (Recommended by Spring framework) • Spring AOP • JBoss AOP
  • 10. Page 9Classification: Restricted Spring AOP AspectJ implementations • By Annotation • By XML Configuration
  • 11. Page 10Classification: Restricted Spring AspectJ AOP Spring AspectJ AOP implementation provides many annotations: • @Aspect declares the class as aspect. • @Pointcut declares the pointcut expression. The annotations used to create advices are given below: • @Before declares the before advice. It is applied before calling the actual method. • @After declares the after advice. It is applied after calling the actual method and before returning result. • @AfterReturning declares the after returning advice. It is applied after calling the actual method and before returning result. But you can get the result value in the advice. • @Around declares the around advice. It is applied before and after calling the actual method. • @AfterThrowing declares the throws advice. It is applied if actual method throws exception.
  • 12. Page 11Classification: Restricted • Before Advice: These advices runs before the execution of join point methods. We can use @Before annotation to mark an advice type as Before advice. • After (finally) Advice: An advice that gets executed after the join point method finishes executing, whether normally or by throwing an exception. We can create after advice using @After annotation. • After Returning Advice: Sometimes we want advice methods to execute only if the join point method executes normally. We can use @AfterReturning annotation to mark a method as after returning advice. • After Throwing Advice: This advice gets executed only when join point method throws exception, we can use it to rollback the transaction declaratively. We use @AfterThrowing annotation for this type of advice. • Around Advice: This is the most important and powerful advice. This advice surrounds the join point method and we can also choose whether to execute the join point method or not. We can write advice code that gets executed before and after the execution of the join point method. It is the responsibility of around advice to invoke the join point method and return values if the method is returning something. We use @Around annotation to create around advice methods.
  • 13. Page 12Classification: Restricted Pointcut @Pointcut("execution(* Operation.*(..))") private void doSomething() {} • The name of the pointcut expression is doSomething(). It will be applied on all the methods of Operation class regardless of return type.
  • 14. Page 13Classification: Restricted Pointcut examples Expression Example Meaning @Pointcut("execution(public * *(..))") applied on all the public methods. @Pointcut("execution(public Operation.*(..))") applied on all the public methods of Operation class. @Pointcut("execution(* Operation.*(..))") applied on all the methods of Operation class. @Pointcut("execution(public Employee.set*(..))") applied on all the public setter methods of Employee class. @Pointcut("execution(int Operation.*(..))") applied on all the methods of Operation class that returns int value.
  • 15. Page 14Classification: Restricted AOP Example // Operation.java public class Operation{ public void msg(){System.out.println("msg method invoked");} public int m(){System.out.println("m method invoked");return 2;} public int k(){System.out.println("k method invoked");return 3;} }
  • 16. Page 15Classification: Restricted AOP Example //The Aspect Class that contains Before advice import org.aspectj.lang.JoinPoint; import org.aspectj.lang.annotation.Aspect; import org.aspectj.lang.annotation.Before; import org.aspectj.lang.annotation.Pointcut; @Aspect public class TrackOperation{ @Pointcut("execution(* Operation.*(..))") public void ptcut(){}//pointcut name @Before(“ptcut()")//applying pointcut on before advice public void myadvice(JoinPoint jp)//it is advice (before advice) { System.out.println("additional concern"); //System.out.println("Method Signature: " + jp.getSignature()); } }
  • 17. Page 16Classification: Restricted Beans.xml <?xml version="1.0" encoding="UTF-8"?> <beans xmlns="http://www.springframework.org/schema/beans" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:aop="http://www.springframework.org/schema/aop" xsi:schemaLocation="http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans.xsd http://www.springframework.org/schema/aop http://www.springframework.org/schema/aop/spring-aop.xsd"> <aop:aspectj-autoproxy/> <bean id="opBean" class=“demo.Operation"> </bean> <bean id="trackMyBean" class=“demo.TrackOperation"></bean> </beans>
  • 18. Page 17Classification: Restricted More examples: @After import org.aspectj.lang.JoinPoint; import org.aspectj.lang.annotation.Aspect; import org.aspectj.lang.annotation.After; import org.aspectj.lang.annotation.Pointcut; @Aspect public class TrackOperation{ @Pointcut("execution(* Operation.*(..))") public void k(){}//pointcut name @After("k()")//applying pointcut on after advice public void myadvice(JoinPoint jp)//it is advice (after advice) { System.out.println("additional concern"); //System.out.println("Method Signature: " + jp.getSignature()); } }
  • 19. Page 18Classification: Restricted More example: @AfterReturning import org.aspectj.lang.JoinPoint; import org.aspectj.lang.annotation.AfterReturning; import org.aspectj.lang.annotation.Aspect; @Aspect public class TrackOperation{ @AfterReturning(pointcut = "execution(* Operation.*(..))", returning= "result") public void myadvice(JoinPoint jp,Object result){ //ADVICE System.out.println("additional concern"); System.out.println("Method Signature: " + jp.getSignature()); System.out.println("Result in advice: "+result); System.out.println("end of after returning advice..."); } }
  • 20. Page 19Classification: Restricted More example: @Around import org.aspectj.lang.ProceedingJoinPoint; import org.aspectj.lang.annotation.Around; import org.aspectj.lang.annotation.Aspect; import org.aspectj.lang.annotation.Pointcut; @Aspect public class TrackOperation { @Pointcut("execution(* Operation.*(..))") public void abcPointcut(){} @Around("abcPointcut()") public Object myadvice(ProceedingJoinPoint pjp) throws Throwable { System.out.println("Additional Concern Before calling actual method"); Object obj=pjp.proceed(); System.out.println("Additional Concern After calling actual method"); return obj; } } //Note: You need to pass the PreceedingJoinPoint reference in the advice method, so that we can proceed the request by calling the proceed() method.
  • 21. Page 20Classification: Restricted More examples: @AfterThrowing import org.aspectj.lang.JoinPoint; import org.aspectj.lang.annotation.AfterThrowing; import org.aspectj.lang.annotation.Aspect; @Aspect public class TrackOperation{ @AfterThrowing( pointcut = "execution(* Operation.*(..))", throwing= "error") public void myadvice(JoinPoint jp,Throwable error)//it is advice { System.out.println("additional concern"); System.out.println("Method Signature: " + jp.getSignature()); System.out.println("Exception is: "+error); System.out.println("end of after throwing advice..."); } }
  • 22. Page 21Classification: Restricted Spring – AspectJ AOP – XML configuration - Example <aop:config> <aop:aspect id="myaspect" ref="trackAspect" > <!-- @Before --> <aop:pointcut id="pointCutBefore" expression="execution(* com.javatpo int.Operation.*(..))" /> <aop:before method="myadvice" pointcut-ref="pointCutBefore" /> </aop:aspect> </aop:config>
  • 23. Page 22Classification: Restricted Jars needed for AspectJ • aspectjrt.jar • aspectjweaver.jar • aspectj.jar • aopalliance.jar
  • 24. Page 23Classification: Restricted Topics to be covered in next session • Spring MVC • Spring MVC – Hibernate Integration