Hints
Below is an example of "Spring AOP's pointcut expression with logical operators with Example"
|
Download as Zip
Link to download
AOPLogicalOperatorsWithBeforeAndAfterMethods
Hints.
Click on File menu. then click " Download"
|
Step.1 Start a Java Project with required jars
- Open Eclipse
- Click on menu New -> Others
- In wizards type "Java Project" and Select "Java Project"
- Click Next
- Enter project name as "AOPLogicalOperatorsWithBeforeAndAfterMethods", then click Next
- Goto Libraries tab, then click on Add External JARs, then select Spring's 21 Framework Jars aopalliance-1.0.jar, aspectjtools-1.6.6.jar and commons-logging-1.1.jar.
- Click Finish.
|
Step.2 Project Explorer Preview
|
package com.springexample;
import org.springframework.context.ApplicationContext;
import org.springframework.context.support.ClassPathXmlApplicationContext;
public class RunMyProgram {
public static void main(String[] args) {
ApplicationContext context = new ClassPathXmlApplicationContext("beans.xml");
Displayer displayer = (Displayer) context.getBean("displayer");
displayer.display((Student) context.getBean("student"));
displayer.displayForPrinting((Student) context.getBean("student"));
}
}
|
<?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"
xmlns:context="http://www.springframework.org/schema/context"
xsi:schemaLocation="http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans-3.0.xsd
http://www.springframework.org/schema/aop http://www.springframework.org/schema/aop/spring-aop-3.0.xsd
http://www.springframework.org/schema/context http://www.springframework.org/schema/context/spring-context-3.0.xsd">
<bean id="student" class="com.springexample.Student">
<property name="studentNo" value="1001" />
<property name="studentName" value="John Peter" />
</bean>
<bean id="displayer" class="com.springexample.Displayer" />
<bean id="mylogger" class="com.springexample.MyLogger" />
<aop:config>
<aop:aspect ref="mylogger">
<aop:pointcut expression="execution(void com.springexample.Displayer.display(..)) and args(com.springexample.Student)" id="studentDisplayLogsPnt"/>
<aop:before pointcut-ref="studentDisplayLogsPnt" method="beforeDisplay" />
<aop:after pointcut-ref="studentDisplayLogsPnt" method="afterDisplay" />
</aop:aspect>
</aop:config>
</beans>
|
package com.springexample;
public class MyLogger {
public void beforeDisplay(){
System.out.println("Before display!");
}
public void afterDisplay(){
System.out.println("After display!
");
}
}
|
package com.springexample;
public class Displayer {
public void display(Student student){
System.out.println(student.getStudentNo());
System.out.println(student.getStudentName());
}
public void displayForPrinting(Student student){
System.out.println("-------------------------");
System.out.println("Student Details");
System.out.println("-------------------------");
System.out.println("Student No: "+student.getStudentNo());
System.out.println("Student Name: "+student.getStudentName());
System.out.println("-------------------------");
}
}
|
package com.springexample;
public class Student {
private int studentNo;
private String studentName;
public int getStudentNo() {
return studentNo;
}
public void setStudentNo(int studentNo) {
this.studentNo = studentNo;
}
public String getStudentName() {
return studentName;
}
public void setStudentName(String studentName) {
this.studentName = studentName;
}
}
|
Output
Before display!
1001
John Peter
After display!
-------------------------
Student Details
-------------------------
Student No: 1001
Student Name: John Peter
-------------------------
|