博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
自动代理生成器
阅读量:5133 次
发布时间:2019-06-13

本文共 2428 字,大约阅读时间需要 8 分钟。

1.默认Advisor自动代理生成器

接口:ISomeService

public interface ISomeService {    public void doSome();    public void doSecont();}

public class MyAfterReturningAdvice implements AfterReturningAdvice {    public void afterReturning(Object o, Method method, Object[] objects, Object o1) throws Throwable {        System.out.println("-+-======================after=================-+-");    }}
public class MyBeforeAdvise implements MethodBeforeAdvice {    public void before(Method method, Object[] objects, Object o) throws Throwable {        System.out.println("==========log==========");    }}
public class SomeService implements ISomeService {    //核心业务    public void doSome() {        System.out.println("拜托别让他一番努力换来是奢求!");    }    public void doSecont() {        System.out.println("++===================Secont====================++");    }}

配置文件

单测

//1.默认Advisor自动代理生成器    @Test    public void test03(){        ApplicationContext ctx = new ClassPathXmlApplicationContext("applicationContext07_aop07_defaultzidonAgent.xml");        ISomeService service = (ISomeService) ctx.getBean("someService");        service.doSome();        service.doSecont();    }

2.BeanName自动代理生成器

接口:ISomeService

public interface ISomeService {    public void doSome();    public void doSecont();}

public class MyBeforeAdvise implements MethodBeforeAdvice {    public void before(Method method, Object[] objects, Object o) throws Throwable {        System.out.println("==========log==========");    }}
public class SomeService implements ISomeService {    //核心业务    public void doSome() {        System.out.println("拜托别让他一番努力换来是奢求!");    }    public void doSecont() {        System.out.println("++===================Secont====================++");    }}

配置文件

单测

//2.BeanName自动代理生成器    @Test    public void test04(){        ApplicationContext ctx = new ClassPathXmlApplicationContext("applicationContext08_aop08_BeanNamezidonAgent.xml");        ISomeService service = (ISomeService) ctx.getBean("someService");        service.doSome();        service.doSecont();    }

 

转载于:https://www.cnblogs.com/shiwz/p/7267934.html

你可能感兴趣的文章
Data truncation: Out of range value for column 'Quality' at row 1
查看>>
字符串处理
查看>>
HtmlUnitDriver 网页内容动态抓取
查看>>
ad logon hour
查看>>
罗马数字与阿拉伯数字转换
查看>>
Eclipse 反编译之 JadClipse
查看>>
距离公式汇总以及Python实现
查看>>
Linux内核态、用户态简介与IntelCPU特权级别--Ring0-3
查看>>
第23月第24天 git命令 .git-credentials git rm --cached git stash clear
查看>>
java SE :标准输入/输出
查看>>
[ JAVA编程 ] double类型计算精度丢失问题及解决方法
查看>>
好玩的-记最近玩的几个经典ipad ios游戏
查看>>
PyQt5--EventSender
查看>>
Sql Server 中由数字转换为指定长度的字符串
查看>>
tmux的简单快捷键
查看>>
[Swift]LeetCode922.按奇偶排序数组 II | Sort Array By Parity II
查看>>
VC6.0调试技巧(一)(转)
查看>>
php match_model的简单使用
查看>>
SIP服务器性能测试工具SIPp使用指导(转)
查看>>
Vue_(组件通讯)子组件向父组件传值
查看>>