加入收藏 | 设为首页 | 会员中心 | 我要投稿 李大同 (https://www.lidatong.com.cn/)- 科技、建站、经验、云计算、5G、大数据,站长网!
当前位置: 首页 > 百科 > 正文

12、基于XML方式的AOP

发布时间:2020-12-16 08:37:19 所属栏目:百科 来源:网络整理
导读:创建Bean //首先创建业务接口 package com.codestd.springstudy.aop.xml.service; public interface UserService { public void login (); public void logout () throws Exception;} //创建实现类 package com.codestd.springstudy.aop.xml.service; public

创建Bean

//首先创建业务接口
package com.codestd.springstudy.aop.xml.service;

public interface UserService {

    public void login();

    public void logout() throws Exception;

}

//创建实现类
package com.codestd.springstudy.aop.xml.service;

public class UserServiceImpl implements UserService {

    @Override
    public void login() {
        System.out.println("User login");

    }

    @Override
    public void logout() throws Exception {
        System.out.println("User logout");
        throw new Exception("Exception test");
    }

}

//创建切面类
package com.codestd.springstudy.aop.xml;

import org.aspectj.lang.JoinPoint;
import org.aspectj.lang.ProceedingJoinPoint;

public class AspectBean {

    public void doAfter(JoinPoint jp){
        System.out.println("do after");
    }

    public void doBefore(JoinPoint jp){
        System.out.println("do after");
    }

    public Object doAround(ProceedingJoinPoint  jp) throws Throwable{
        System.out.println("do Around");
        Object obj = jp.proceed();
        return obj;
    }

    public void doThrowing(JoinPoint jp,Exception e){
        System.out.println(e.getClass().getName()+"|->|"+e.getMessage());
    }

}

配置AOP

下面使用XML配置AOP

<bean id="userService" class="com.codestd.springstudy.aop.xml.service.UserServiceImpl" />

    <bean id="aspectBean" class="com.codestd.springstudy.aop.xml.AspectBean" />

    <aop:config>
        <aop:aspect id="aspect" ref="aspectBean">
            <aop:pointcut expression="execution(* com.codestd.springstudy.aop.xml.service.*.*(..))" id="servicePointcut"/>
            <aop:after method="doAfter" pointcut-ref="servicePointcut" />
            <aop:before method="doBefore" pointcut-ref="servicePointcut"/>
            <aop:around method="doAround" pointcut-ref="servicePointcut"/>
            <aop:after-throwing method="doThrowing" pointcut-ref="servicePointcut" throwing="e"/>
        </aop:aspect>
    </aop:config>

doAround方法要有返回值,并且类型是Object,接收的参数类型为ProceedingJoinPoint
aop:after-throwing中需要使用throwing指定异常的参数名,doThrowing(JoinPoint jp,Exception e)中的e

测试

测试方法如下

package com.codestd.springstudy.aop.xml.service;

import org.junit.Test;
import org.junit.runner.RunWith;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.test.context.ContextConfiguration;
import org.springframework.test.context.junit4.SpringJUnit4ClassRunner;

@RunWith(SpringJUnit4ClassRunner.class)
@ContextConfiguration(locations={"classpath:aop/applicationContext.xml"})
public class UserServiceImplTest {

    @Autowired
    private UserService userService;

    @Test
    public void test() throws Exception {
        this.userService.login();
        this.userService.logout();
    }

}

测试结果如下

do after do Around User login do after do after do Around User logout do after java.lang.Exception|->|Exception test

使用XML方式配置引入

<aop:config>
    <aop:aspect>
        <aop:declare-parents types-matching="com.codestd.springstudy.aop.xml.service.UserService+" implement-interface="com.codestd.springstudy.aop.introductions.Flyable" default-impl="com.codestd.springstudy.aop.introductions.DefaultFlyable"/>
    </aop:aspect>
</aop:config>

测试类如下

@RunWith(SpringJUnit4ClassRunner.class)
@ContextConfiguration(locations={"classpath:aop/applicationContext.xml"})
public class UserServiceImplTest {
    @Autowired
    private Flyable flyable;

    @Test
    public void test() throws Exception {
        this.flyable.fly();
    }
}

(编辑:李大同)

【声明】本站内容均来自网络,其相关言论仅代表作者个人观点,不代表本站立场。若无意侵犯到您的权利,请及时与联系站长删除相关内容!

    推荐文章
      热点阅读