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

spring基础-01

时间:2014-11-15 00:00:33      阅读:462      评论:0      收藏:0      [点我收藏+]

标签:style   blog   http   io   color   ar   使用   sp   div   

IOC : inversion of 缩写,

DI:dependency injection 即在调用者中注入被调用者的实例。

AOP 面向切面编程,是代理模式的体现。spring默认使用JDK的动态代理,主要是代理接口,如果业务对象没有实现接口,则默认CGLIB代理。

例下:

xml配置

	<!-- AOP配置 -->
	<aop:config>
		<aop:aspect id="logAspect" ref="logService">
			<aop:pointcut id="targetMethod"
				expression="execution(* org.best.spring.aop.*.*(..))" />
			<aop:after pointcut-ref="targetMethod" method="doLog" />
		</aop:aspect>
	</aop:config>
	<!-- 日志服务 -->
	<bean id="logService" class="org.best.spring.xx"></bean>
	<!-- 普通的业务bean -->
	<bean id="targetService" class="org.best.spring.xxxxx"></bean>

实用编码获取bean:

        // 创建Spring上下文
        ApplicationContext ctx = new ClassPathXmlApplicationContext(new String[] { "aop/TestAOP.xml" });
        TargetService ts = (TargetService)ctx.getBean("targetService");
     //处理业务逻辑。。。。

那么问题来了,我的目录结构是:

  bubuko.com,布布扣

ClassPathXmlApplicationContext 是怎么读取到 TestAOP.xml 的呢??待解决,mark

 

spring基础-01

标签:style   blog   http   io   color   ar   使用   sp   div   

原文地址:http://www.cnblogs.com/baidu-google/p/4098371.html

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