欢迎来到天天文库
浏览记录
ID:37915145
大小:158.50 KB
页数:17页
时间:2019-06-02
《JAVA EE期末考试 西华大学》由会员上传分享,免费在线阅读,更多相关内容在教育资源-天天文库。
1、二、什么是IOC和AOP?它们的作用是什么?举例说明。IOC:控制反转,是一种设计模式。一层含义是控制权的转移:由传统的在程序中控制依赖转移到由容器来控制;第二层是依赖注入:将相互依赖的对象分离,在spring配置文件中描述他们的依赖关系。他们的依赖关系只在使用的时候才建立。简单来说就是不需要NEW一个对象了。AOP:面向切面,是一种编程思想,OOP的延续。将系统中非核心的业务提取出来,进行单独处理。比如事务、日志和安全等。这个简单来说就是可以在一段程序之前或者之后做一些事。Spring的AOP和IOC都是为了解决系统代码耦合度过高的问题。使代码重用度高、易于维
2、护。不过AOP和IOC并不是spring中特有的,只是spring把他们应用的更灵活方便XML3、rg/schema/beans/spring-beans-3.0.xsd">4、serDaoImple">5、le">privateApplicationContextctx=newClassPathXmlApplicationContext("beans.xml");通过XML对对象进行实例化。而不需要new来为对象分配空间等创建实例。AOP增强的方法:publicvoidbeforeAdvice(JoinPointpoint){第17页共17页System.out.println("连接点为:"+point.getTarget()+"6、."+point.getSignature().getName());System.out.println("进入时!访问时间为:"+System.currentTimeMillis());}publicvoidafterReturnintAdvice(JoinPointpoint){System.out.println("连接点为:"+point.getTarget()+"."+point.getSignature().getName());System.out.println("退出时!访问时间为:"+System.currentTimeMillis());7、}publicvoidaroundAdvice(ProceedingJoinPointpoint)throwsThrowable{System.out.println("进入成功!");point.proceed();System.out.println("退出成功!");}在特定的切点织入增强8、g.dao..*.del
3、rg/schema/beans/spring-beans-3.0.xsd">4、serDaoImple">5、le">privateApplicationContextctx=newClassPathXmlApplicationContext("beans.xml");通过XML对对象进行实例化。而不需要new来为对象分配空间等创建实例。AOP增强的方法:publicvoidbeforeAdvice(JoinPointpoint){第17页共17页System.out.println("连接点为:"+point.getTarget()+"6、."+point.getSignature().getName());System.out.println("进入时!访问时间为:"+System.currentTimeMillis());}publicvoidafterReturnintAdvice(JoinPointpoint){System.out.println("连接点为:"+point.getTarget()+"."+point.getSignature().getName());System.out.println("退出时!访问时间为:"+System.currentTimeMillis());7、}publicvoidaroundAdvice(ProceedingJoinPointpoint)throwsThrowable{System.out.println("进入成功!");point.proceed();System.out.println("退出成功!");}在特定的切点织入增强8、g.dao..*.del
4、serDaoImple">5、le">privateApplicationContextctx=newClassPathXmlApplicationContext("beans.xml");通过XML对对象进行实例化。而不需要new来为对象分配空间等创建实例。AOP增强的方法:publicvoidbeforeAdvice(JoinPointpoint){第17页共17页System.out.println("连接点为:"+point.getTarget()+"6、."+point.getSignature().getName());System.out.println("进入时!访问时间为:"+System.currentTimeMillis());}publicvoidafterReturnintAdvice(JoinPointpoint){System.out.println("连接点为:"+point.getTarget()+"."+point.getSignature().getName());System.out.println("退出时!访问时间为:"+System.currentTimeMillis());7、}publicvoidaroundAdvice(ProceedingJoinPointpoint)throwsThrowable{System.out.println("进入成功!");point.proceed();System.out.println("退出成功!");}在特定的切点织入增强8、g.dao..*.del
5、le">privateApplicationContextctx=newClassPathXmlApplicationContext("beans.xml");通过XML对对象进行实例化。而不需要new来为对象分配空间等创建实例。AOP增强的方法:publicvoidbeforeAdvice(JoinPointpoint){第17页共17页System.out.println("连接点为:"+point.getTarget()+"
6、."+point.getSignature().getName());System.out.println("进入时!访问时间为:"+System.currentTimeMillis());}publicvoidafterReturnintAdvice(JoinPointpoint){System.out.println("连接点为:"+point.getTarget()+"."+point.getSignature().getName());System.out.println("退出时!访问时间为:"+System.currentTimeMillis());
7、}publicvoidaroundAdvice(ProceedingJoinPointpoint)throwsThrowable{System.out.println("进入成功!");point.proceed();System.out.println("退出成功!");}在特定的切点织入增强8、g.dao..*.del
8、g.dao..*.del
此文档下载收益归作者所有