什么是ioc:ioc是控制反转,就是把对象交给spring容器统一管理,不需要程序员手动去new,在需要的时候直接从容器中获取即可。
//1.IOC通过注解实现的几种方式 @Component @Controller @Service @Repostory public class A{ //以上四种注解是打在类上实现ioc的 } @Configuration public class A{ @Bean public B b(){ B b = new B(); return b; } }
//2.通过xml的方式实现ioc <bean id="A" class="com.demo.example.A"> </bean>
什么是DI:DI是属性注入(装填属性)
举一个最简单的例子
//前两步可以理解为ioc的过程 Shouji meizu = new Shouji(); Wallpaper fengjing = new Wallpaper(); //这一步就是依赖注入(装填属性) meizu.setWallpaper(fengjing);
//1.通过注解形式 @Service public class B{ @Autowired private A a; @Resourse private C c; } //2.通过applicationContext.getBean(); @WebServlet("/...") public class B{ A a = applicationCpontext.getBean("com.demo.example.A"); } //3.Configuration中的注入方式 @Configuration public class C{ @Bean public A a(){ return new A(); } //在B中注入A,方式一 @Bean public B b(A a){ //此时spring会自动识别把上面放入容器的A注入到B中 return new B(); } //方式二 @Bean public B b(){ return new B(a()); } }
//4.过xml方式 <bean id="a" class="com.demo.example.A"> <property name="b" ref="com.demo.example.B"></property> </bean>
什么是AOP:AOP是面向切面编程,可以在不影响原有代码执行的基础上优雅的植入逻辑代码;
实现aop需要导入依赖jar包;
<!-- https://mvnrepository.com/artifact/org.aspectj/aspectjweaver --> <dependency> <groupId>org.aspectj</groupId> <artifactId>aspectjweaver</artifactId> <version>1.9.4</version> </dependency>
第一种方式:通过Spring API 实现
//写业务接口及实现类 public interface UserService { public void add(); } public class UserServiceImpl implements UserSevice { @Override public void add() { System.out.println("增加用户"); } } //写增强类 public class Log implements MethodBeforeAdvice { //method : 要执行的目标对象的方法 //objects : 被调用的方法的参数 //Object : 目标对象 @Override public void before(Method method, Object[] objects, Object o) throws Throwable { System.out.println( o.getClass().getName() + "的" + method.getName() + "方法被执行了"); } } public class AfterLog implements AfterReturningAdvice { //returnValue 返回值 //method被调用的方法 //args 被调用的方法的对象的参数 //target 被调用的目标对象 @Override public void afterReturning(Object returnValue, Method method, Object[] args, Object target) throws Throwable { System.out.println("执行了" + target.getClass().getName() +"的"+method.getName()+"方法," +"返回值:"+returnValue); } }
<?xml version="1.0" encoding="UTF-8"?> <beans xmlns="http://www.springframework.org/schema/beans" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:aop="http://www.springframework.org/schema/aop" xsi:schemaLocation="http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans.xsd http://www.springframework.org/schema/aop http://www.springframework.org/schema/aop/spring-aop.xsd"> <!--注册bean--> <bean id="userService" class="com.kuang.service.UserServiceImpl"/> <bean id="log" class="com.kuang.log.Log"/> <bean id="afterLog" class="com.kuang.log.AfterLog"/> <!--aop的配置--> <aop:config> <!--切入点 expression:表达式匹配要执行的方法--> <aop:pointcut id="pointcut" expression="execution(* com.kuang.service.UserServiceImpl.*(..))"/> <!--执行环绕; advice-ref执行方法 . pointcut-ref切入点--> <aop:advisor advice-ref="log" pointcut-ref="pointcut"/> <aop:advisor advice-ref="afterLog" pointcut-ref="pointcut"/> </aop:config> </beans>
第二种:自定义类来实现aop
//写切入类 public class DiyPointcut { public void before(){ System.out.println("---------方法执行前---------"); } public void after(){ System.out.println("---------方法执行后---------"); } }
<!--Spring中加配置-第二种方式自定义实现--> <!--注册bean--> <bean id="diy" class="com.kuang.config.DiyPointcut"/> <!--aop的配置--> <aop:config> <!--第二种方式:使用AOP的标签实现--> <aop:aspect ref="diy"> <aop:pointcut id="diyPonitcut" expression="execution(* com.kuang.service.UserServiceImpl.*(..))"/> <aop:before pointcut-ref="diyPonitcut" method="before"/> <aop:after pointcut-ref="diyPonitcut" method="after"/> </aop:aspect> </aop:config>
第三种:使用注解实现
//第一步:编写一个注解实现的增强类 package com.demo.config; import org.aspectj.lang.ProceedingJoinPoint; import org.aspectj.lang.annotation.After; import org.aspectj.lang.annotation.Around; import org.aspectj.lang.annotation.Aspect; import org.aspectj.lang.annotation.Before; @Aspect public class AnnotationPointcut { @Before("execution(* com.kuang.service.UserServiceImpl.*(..))") public void before(){ System.out.println("---------方法执行前---------"); } @After("execution(* com.kuang.service.UserServiceImpl.*(..))") public void after(){ System.out.println("---------方法执行后---------"); } @Around("execution(* com.kuang.service.UserServiceImpl.*(..))") public void around(ProceedingJoinPoint jp) throws Throwable { System.out.println("环绕前"); System.out.println("签名:"+jp.getSignature()); //执行目标方法proceed Object proceed = jp.proceed(); System.out.println("环绕后"); System.out.println(proceed); } }
<!--第三种方式:注解实现--> <bean id="annotationPointcut" class="com.kuang.config.AnnotationPointcut"/> <aop:aspectj-autoproxy/>
aop:aspectj-autoproxy:说明
通过aop命名空间的<aop:aspectj-autoproxy />声明自动为spring容器中那些配置@aspectJ切面的bean创建代理,织入切面。当然,spring 在内部依旧采用AnnotationAwareAspectJAutoProxyCreator进行自动代理的创建工作,但具体实现的细节已经被<aop:aspectj-autoproxy />隐藏起来了
<aop:aspectj-autoproxy />有一个proxy-target-class属性,默认为false,表示使用jdk动态代理织入增强,当配为<aop:aspectj-autoproxy poxy-target-class="true"/>时,表示使用CGLib动态代理技术织入增强。不过即使proxy-target-class设置为false,如果目标类没有声明接口,则spring将自动使用CGLib动态代理。
三级缓存主要解决了java的循环依赖问题