零配置实现Spring IoC与AOP

Spring实现AOP方式之二:使用注解配置 Spring AOP 基础上,新增一个类Member:

package com.ailianshuo.springaop.sample05;

/**
 * 该类并未注解,容器不会自动管理
 * @author ailianshuo
 * 2017年7月27日 上午10:45:29
 */
public class Member {
    public void display(){
        System.out.println("显示会员对象");
    }
}

该类并未注解,容器不会自动管理。因为没有xml配置文件,则使用一个作为配置信息,ApplicationCfg.java文件

package com.ailianshuo.springaop.sample05;

import org.springframework.context.annotation.Bean;
import org.springframework.context.annotation.ComponentScan;
import org.springframework.context.annotation.Configuration;
import org.springframework.context.annotation.EnableAspectJAutoProxy;
@Configuration  //用于表示当前类为容器的配置类,类似<beans/>
@ComponentScan(basePackages="com.ailianshuo.springaop.sample05")  //扫描的范围,相当于xml配置的结点<context:component-scan/>
@EnableAspectJAutoProxy(proxyTargetClass=true)  //自动代理,相当于<aop:aspectj-autoproxy proxy-target-class="true"></aop:aspectj-autoproxy>
public class ApplicationCfg {
     //在配置中声明一个bean,相当于<bean id=getUser class="com.ailianshuo.springaop.sample05.Member"/>
    @Bean
    public Member getMember(){
        return new Member();
    }
}

测试代码:

package com.ailianshuo.springaop.sample05;

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

/**
 * 零配置实现Spring IoC与AOP
 * @author ailianshuo
 * 2017年7月25日 下午11:42:57
 */
public class Test {

    public static void main(String[] args) {
          // 通过类初始化容器
        ApplicationContext ctx = new AnnotationConfigApplicationContext(ApplicationCfg.class);
        Math math = ctx.getBean("math", Math.class);
        int n1 = 20, n2 =2;
        math.add(n1, n2);
        math.sub(n1, n2);
        math.mut(n1, n2);
        try {
            math.div(n1, n2);
        } catch (Exception e) {
        }

        Member member=ctx.getBean("getMember",Member.class);
        member.display();
    }

}

运行结果:

----------before advice----------
add
20+2=22
----------after advice----------
----------before advice----------
sub
20-2=18
----------after advice----------
----------before advice----------
mut
20X2=40
----------after advice----------
----------before advice----------
div
20/2=10
----------after advice----------
显示会员对象
  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值