您的位置:首页 > 编程语言 > Java开发

零配置实现Spring IoC与AOP

2017-07-27 11:34 357 查看
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----------
显示会员对象
内容来自用户分享和网络整理,不保证内容的准确性,如有侵权内容,可联系管理员处理 点击这里给我发消息
标签:  spring ioc aop