码迷,mamicode.com
首页 > 编程语言 > 详细

Spring框架中的aop操作之二 通过配置文件实现增强

时间:2017-11-21 23:50:39      阅读:182      评论:0      收藏:0      [点我收藏+]

标签:context   swift   是什么   ext.get   append   one   image   通知   conf   

配置文件代码:

<?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:context="http://www.springframework.org/schema/context"
    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/context http://www.springframework.org/schema/context/spring-context.xsd
         http://www.springframework.org/schema/aop http://www.springframework.org/schema/aop/spring-aop.xsd">
    <!-- 开启注解扫描 -->
    <context:component-scan base-package="com.swift"></context:component-scan>
    
    <bean id="book" class="com.swift.aop.Book"></bean>
    <bean id="adviceBook" class="com.swift.aop.AdviceBook"></bean>
    
    <aop:config>
    <!-- 切入点表达式第一个*表示public private等权限后接空格,第二个*表示任意方法(..)表示参数 -->
    <aop:pointcut expression="execution(* com.swift.aop.Book.*())" id="pointcut1"/>
    
    <!-- 哪个切面(用来增强切入点的类) 名称是什么用ref表示 -->
    <aop:aspect ref="adviceBook">
    <!-- 增强的具体方法,增强哪个切入点 -->
    <aop:before method="before" pointcut-ref="pointcut1"/>
    </aop:aspect>
    </aop:config>
</beans>

包括bean context aop三个约束

以及切面的配置——表达式execution含义、advice通知/增强设置


 

连接点joinpoint的类,即需要被增强的类:

package com.swift.aop;

public class Book {
    public String fun() {
        System.out.println("This is Book‘s fun()..............");
        return "This is Book‘s fun()..............";
    }
}

进行切面操作的类:

package com.swift.aop;

public class AdviceBook {
    public String before() {
        System.out.println("This is AdviceBook‘s before()...............");
        return "This is AdviceBook‘s before()...............";
    }
}

测试的类:

package com.swift.web;

import java.io.IOException;
import javax.servlet.ServletException;
import javax.servlet.annotation.WebServlet;
import javax.servlet.http.HttpServlet;
import javax.servlet.http.HttpServletRequest;
import javax.servlet.http.HttpServletResponse;

import org.springframework.context.ApplicationContext;
import org.springframework.context.support.ClassPathXmlApplicationContext;

import com.swift.aop.Book;
@WebServlet("/test")
public class ServleTest extends HttpServlet {
    private static final long serialVersionUID = 1L;
    public ServleTest() {
        super();
    }
    protected void doGet(HttpServletRequest request, HttpServletResponse response) throws ServletException, IOException {
        response.getWriter().append("Served at: ").append(request.getContextPath());
        ApplicationContext context=new ClassPathXmlApplicationContext("aop.xml");
        Book book=(Book)context.getBean("book");
        response.getWriter().append(book.fun());
    }
    protected void doPost(HttpServletRequest request, HttpServletResponse response) throws ServletException, IOException {
        doGet(request, response);
    }

}

演示效果图:

浏览器无反应

技术分享图片

只有Book的方法,没有前置的before,想来应该是调用了但是返回的字符串没能显示在浏览器上

控制台console成功

技术分享图片

前置增强在切入点前输出

 

Spring框架中的aop操作之二 通过配置文件实现增强

标签:context   swift   是什么   ext.get   append   one   image   通知   conf   

原文地址:http://www.cnblogs.com/qingyundian/p/7875529.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!