zoukankan      html  css  js  c++  java
  • Spring之AOP简单demo

    1.加入JAR包。出了Spring自身的Jar包还要一些依赖的JAR包。不然会报ClassNotFound。

    Student.java

    package com.lubby.bean;
    
    import org.springframework.stereotype.Component;
    @Component("student")
    public class Student {
    	private String id;
    	private String name;
    
    	public Student() {
    		super();
    	}
    	public Student(String id, String name) {
    		super();
    		this.id = id;
    		this.name = name;
    	}
    	public void readBook() {
    		System.out.println("I am reading book now.....");
    	}
    	public String getId() {
    		return id;
    	}
    	public void setId(String id) {
    		this.id = id;
    	}
    	public String getName() {
    		return name;
    	}
    	public void setName(String name) {
    		this.name = name;
    	}
    }
    

    Something.java

    package com.lubby.bean;
    
    import org.springframework.stereotype.Component;
    
    @Component("something")
    public class Something {
    	public void borrowBook() {
    		System.out.println("Borrow the book from library......");
    	}
    	public void returnBook() {
    		System.out.println("Return the book to library........");
    	}
    }
    

    test.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:p="http://www.springframework.org/schema/p"
    	xmlns:context="http://www.springframework.org/schema/context"
    	xmlns:mvc="http://www.springframework.org/schema/mvc" xmlns:aop="http://www.springframework.org/schema/aop"
    	default-lazy-init="true"
    	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
        http://www.springframework.org/schema/mvc
        http://www.springframework.org/schema/mvc/spring-mvc-3.0.xsd
        ">
    
    	<!-- 自己主动检測并注冊为spring中的bean+启用注解 -->
    	<context:component-scan base-package="com.lubby.bean"></context:component-scan>
    	<aop:config>
    		<aop:aspect ref="something">
    			<aop:pointcut expression="execution(* com.lubby.bean.Student.readBook(..))"  --定义切点为readBook方法
    				id="readBook" />  
    			<aop:before pointcut-ref="readBook" method="borrowBook" />---在运行readBook方法之前运行borrowBook方法
    			<aop:after-returning pointcut-ref="readBook"    ----在运行readBook方法之后运行returnBook
    				method="returnBook" />
    		</aop:aspect>
    	</aop:config>
    </beans>

    运行结果

    Borrow the book from library......
    I am reading book now.....
    Return the book to library........
    




查看全文
  • 相关阅读:
    java 数据结构(八):Iterator接口与foreach循环
    java 数据结构(七):Collection接口
    java 数据结构(六):数组与集合
    java中equals(),hashcode()和==的区别
    Android中的IPC方式
    Android-如何防止apk被反编译
    Android-管理应用的内存(转)
    102. Binary Tree Level Order Traversal
    对于开发团队管理的理解
    TCP三次握手和四次挥手的全过程
  • 原文地址:https://www.cnblogs.com/ldxsuanfa/p/10906125.html
  • Copyright © 2011-2022 走看看