JAVA面试框架部分

AOP:

  1. 是什么?
    AOP 是软件设计领域中的面向切面编程,它是面向对象编程的一种补充和完善
  2. 解决什么问题?
    实际项目中通常会将系统两大部分:核心关注点和非核心关注点
    AOP就是要在基于OCP(开闭原则)在不改变原有系统核心业务代码的基础上动态添加一些扩展功能并可以控制对象的执行。允许扩展,不允许修改。
  3. 实际项目应用场景
    AOP 通常应用于日志的处理,事务处理,权限处理,缓存处理等等。
  4. AOP底层原理实现分析?
    AOP底层基于代理机制实现功能扩展:(了解)
    1)假如目标对象(被代理对象)实现接口,则底层默认采用JDK动态代理机制为目标对象创建代理对象(目标类和代理类会实现共同接口)
    2)假如目标对象(被代理对象)没有实现接口,则底层默认采用CGLIB代理机制为目标对象创建代理对象(默认创建的代理类会继承目标对象类型)。
  5. 相关术语
    切面(aspect): 横切面对象,一般为一个具体类对象(可以借助@Aspect声明)
    连接点(joinpoint):程序执行过程中某个特定的点,一般指被拦截到的的方法
    切入点(pointcut):对连接点拦截内容的一种定义,一般可以理解为多个连接点的结合.
    通知(Advice):在切面的某个特定连接点上执行的动作(扩展功能),例如around,before,after等
    很晦涩难懂,多做例子,做完就会清晰。先可以按白话去理解。
  6. 实现xml方式
 创建接口:
public interface HelloService {
	 void sayHello(String msg);
}
创建接口实现类:
public class HelloServiceImpl implements HelloService {
	public void sayHello(String msg) {
		//假设这条语句是我们系统中的核心业务
		System.out.println(msg);
	}
}
创建日志处理类:
public class LoggingAspect {
	 public void beforeMethod(){
		 System.out.println("method start");
	 }
	 public void afterMethod(){
		 System.out.println("method end");
	 }
}

配置bean对象:

<?xml version="1.0" encoding="UTF-8"?>
<beans 
    default-lazy-init="true"
    xmlns="http://www.springframework.org/schema/beans" 
    xmlns:p="http://www.springframework.org/schema/p"
    xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" 
    xmlns:context="http://www.springframework.org/schema/context"
    xmlns:tx="http://www.springframework.org/schema/tx"
    xmlns:aop="http://www.springframework.org/schema/aop" 
    xmlns:mvc="http://www.springframework.org/schema/mvc"
    xmlns:util="http://www.springframework.org/schema/util"
    xmlns:jpa="http://www.springframework.org/schema/data/jpa"
    xsi:schemaLocation="  
       http://www.springframework.org/schema/beans   
       http://www.springframework.org/schema/beans/spring-beans-4.3.xsd  
       http://www.springframework.org/schema/mvc   
       http://www.springframework.org/schema/mvc/spring-mvc-4.3.xsd   
       http://www.springframework.org/schema/tx   
       http://www.springframework.org/schema/tx/spring-tx-4.3.xsd   
       http://www.springframework.org/schema/aop 
       http://www.springframework.org/schema/aop/spring-aop-4.3.xsd
       http://www.springframework.org/schema/util 
       http://www.springframework.org/schema/util/spring-util-4.3.xsd
       http://www.springframework.org/schema/data/jpa 
       http://www.springframework.org/schema/data/jpa/spring-jpa-1.3.xsd
       http://www.springframework.org/schema/context
       http://www.springframework.org/schema/context/spring-context-4.3.xsd"> 
   
    <!-- 核心业务对象 -->
    <bean id="helloService"
          class="spring.beans.HelloServiceImpl"/>
<!-- 配置非核心业务对象(日志处理对象):切面 -->
<bean id="log" 
          class="spring.aop.LoggingAspect"/>
    <!-- AOP配置(切入点,切面) -->  
    <aop:config>
       <!-- 配置切入点(bean,@annotation,within) -->
       <aop:pointcut 
            expression="within(spring.beans.HelloServiceImpl)" 
            id="logPointCut"/>
       <!-- 配置日志处理 -->
       <aop:aspect ref="log" >
           <aop:before method="beforeMethod" 
<!—-一系列的对impl的功能实现:-->
                       pointcut-ref="logPointCut"/>
           <aop:after  method="afterMethod"
                       pointcut-ref="logPointCut"/>
       </aop:aspect>
    </aop:config>
</beans>

编写测试类:

public class TestAOP01 {

	private ClassPathXmlApplicationContext ctx;
	@Before
	public void init(){
	    ctx=new ClassPathXmlApplicationContext("spring-configs.xml");
	}
	@Test
	public void testSayHello(){
		HelloService helloService=
ctx.getBean("helloService",HelloService.class);
		helloService.sayHello("cgb1712");
	}
	@After
	public void destory(){
		ctx.close();
	}
}

通知类型:
在AOP编程中有五种类型的通知:
1)前置通知 (@Before) 方法执行之前执行
2)返回通知 (@AfterReturning) 方法return之后执行
3)异常通知 (@AfterThrowing) 方法出现异常之后执行
4)后置通知 (@After) : 又称之为最终通知(finally)
5)环绕通知 (@Around) :重点掌握

其结构如下:

Try{
   @Before
   核心业务
   @AfterReturning
}catch(Exception e){
   ….
   @AfterThrowing
}finally{
   ….
   @After
}

如上四个一起使用时可以直接使用@Around通知替换

原理分析:代理方式实现

在这里插入图片描述
https://blog.csdn.net/zpf336/article/details/82751925参考静态代理和动态代理的区别

IOC:

解释

  • 是什么?
    “控制反转” 它还有一个别名为 DI(Dependency Injection),即依赖注入
  • 谁控制谁:在传统的开发模式下,我们都是采用直接 new 一个对象的方式来创建对象,也就是说你依赖的对象直接由你自己控制,但是有了 IOC
    容器后,则直接由 IoC 容器来控制。所以“谁控制谁”,当然是 IoC 容器控制对象。
  • 控制什么:控制对象。
  • 为何是反转:没有 IoC 的时候我们都是在自己对象中主动去创建被依赖的对象,这是正转。但是有了 IoC 后,所依赖的对象直接由 IoC
    容器创建后注入到被注入的对象中,依赖的对象由原来的主动获取变成被动接受,所以是反转。
  • 哪些方面反转了:所依赖对象的获取被反转了
  • 功能有:对象的创建,存储(map),依赖注入、

创建对象的几种方法:怎么创建?
在这里插入图片描述
生命周期:

  • 单例模式(spring容器创建和销毁 全局的 容器关闭时销毁)数据库连接池是单例模式;多例模式(spring容器不负责销毁)。
  • 在这里插入图片描述
  • 何时创建:单例模式加载xml时候 创建bean对象,而且只有一个
  • 多例模式时候,加载xml遇到bean则管理起来,每次使用的时候都创建一个新的对象

作用域:

  • Singleton:全局唯一性。
  • Prototype:每次获取都会创建新的对象。

延迟加载策略:
在这里插入图片描述
依赖注入方式:【构造注入、set注入、静态工厂.getIsntance()、实例工厂,getTime()】

  • 构造注入
public class StudentService {

    private StudentDao studentDao;

    public StudentService(StudentDao studentDao) {
        this.studentDao = studentDao;
    }

    public String save(){
       return studentDao.save();
    }

}
<?xml version="1.0" encoding="UTF-8"?>
<beans xmlns="http://www.springframework.org/schema/beans"
       xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
       xsi:schemaLocation="http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans.xsd">

    <bean id="studentService" class="StudentService">
            <constructor-arg ref="studentDao"/>
    </bean>
    <bean id="studentDao" class="StudentDao"/>

</beans>
  • Set注入
public class StudentService {

    private StudentDao studentDao;

    public void setStudentDao(StudentDao studentDao) {
        this.studentDao = studentDao;
    }

    public String save(){
       return studentDao.save();
    }

}
<?xml version="1.0" encoding="UTF-8"?>
<beans xmlns="http://www.springframework.org/schema/beans"
       xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
       xsi:schemaLocation="http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans.xsd">

    <bean id="studentService" class="StudentService">
            <property name="studentDao" ref="studentDao"/>
    </bean>
    <bean id="studentDao" class="StudentDao"/>
</beans>

Spring:附送一张调用图
在这里插入图片描述
在这里插入图片描述

BeanFactory:
着重点是factory,工厂,相当于IOC容器,定义了许多获取bean的规则和方式。

FactoryBean:
着重点是Bean,也是一个接口,一般情况下,spring通过反射机制利用的class属性指定实现类实例化Bean,但是某些情况下会很复杂,所以就有了FactoryBean这个接口,来定制化实现类。

参考:https://www.cnblogs.com/aspirant/p/9082858.html

sping对象的生命周期

实例化

  1. 实例化一个 Bean,也就是我们常说的 new。
    IOC 依赖注入
  2. 按照 Spring 上下文对实例化的 Bean 进行配置,也就是 IOC 注入。
    setBeanName 实现
  3. 如果这个 Bean 已经实现了 BeanNameAware 接口,会调用它实现的 setBeanName(String)
    方法,此处传递的就是 Spring 配置文件中 Bean 的 id 值
    BeanFactoryAware 实现
  4. 如果这个 Bean 已经实现了 BeanFactoryAware 接口,会调用它实现的 setBeanFactory,
    setBeanFactory(BeanFactory)传递的是 Spring 工厂自身(可以用这个方式来获取其它 Bean,
    只需在 Spring 配置文件中配置一个普通的 Bean 就可以)。
    13/04/2018 Page 125 of 283
    ApplicationContextAware 实现
  5. 如果这个 Bean 已经实现了 ApplicationContextAware 接口,会调用
    setApplicationContext(ApplicationContext)方法,传入 Spring 上下文(同样这个方式也
    可以实现步骤 4 的内容,但比 4 更好,因为 ApplicationContext 是 BeanFactory 的子接
    口,有更多的实现方法)
    postProcessBeforeInitialization 接口实现-初始化预处理
  6. 如果这个 Bean 关联了 BeanPostProcessor 接口,将会调用
    postProcessBeforeInitialization(Object obj, String s)方法,BeanPostProcessor 经常被用
    作是 Bean 内容的更改,并且由于这个是在 Bean 初始化结束时调用那个的方法,也可以被应
    用于内存或缓存技术。
    init-method
  7. 如果 Bean 在 Spring 配置文件中配置了 init-method 属性会自动调用其配置的初始化方法。
    postProcessAfterInitialization
  8. 如果这个 Bean 关联了 BeanPostProcessor 接口,将会调用
    postProcessAfterInitialization(Object obj, String s)方法。
    注:以上工作完成以后就可以应用这个 Bean 了,那这个 Bean 是一个 Singleton 的,所以一
    般情况下我们调用同一个 id 的 Bean 会是在内容地址相同的实例,当然在 Spring 配置文件中
    也可以配置非 Singleton。
    Destroy 过期自动清理阶段
  9. 当 Bean 不再需要时,会经过清理阶段,如果 Bean 实现了 DisposableBean 这个接口,会调
    用那个其实现的 destroy()方法;
    destroy-method 自配置清理
  10. 最后,如果这个 Bean 的 Spring 配置中配置了 destroy-method 属性,会自动调用其配置的
    销毁方法。
    在这里插入图片描述

spring加载bean对象时,怎么解决循环依赖问题?

https://www.cnblogs.com/wjxzs/p/14239052.html

MVC:

  • 理解
    model (模型)数据
    view(视图)页面
    controller(控制器)业务逻辑

  • 官方架构
    在这里插入图片描述

  • 底层原理(图片看不清可以参考官网)
    在这里插入图片描述
    Dispatcher:前端控制器
    HandlerMapping:url映射器
    HandlerIntercepters:拦截器
    Controller:控制器
    ViewResolver:视图解析器
    流程:参考以上图片

  • 拦截器的三个过程执行方法
    在这里插入图片描述

MyBatis:

  • 是什么
    在这里插入图片描述
  • 实现原理
    在这里插入图片描述
    使用jdk的动态代理实现的
    源码分析
final MapperProxy<T> mapperProxy = new MapperProxy<T>(sqlSession, mapperInterface, methodCache);

在这里插入图片描述
在这里插入图片描述
会自动执行invoke()方法的。
MyBatis整个过程分析:
在这里插入图片描述

Spring事务管理:

  1. 什么是事务
    1.原子性(Atomicity)事务是一个原子操作,由一系列动作组成。事务的原子性确保动作要么全部完成,要么完全 不起作用。
    2.一致性(Consistency)事务在完成时,必须是所有的数据都保持一致状态。
    3.隔离性(Isolation)并发事务执行之间无影响,在一个事务内部的操作对其他事务是不产生影响,这需要事务隔离级别来指定隔离性。
    4.持久性(Durability)一旦事务完成,数据库的改变必须是持久化的。
  2. 在企业级应用中,多用户访问数据库是常见的场景,这就是所谓的事务的并发。事务并发所可能存在的问题:
    1.脏读:一个事务读到另一个事务提交、未回滚的数据。【脏数据】
    2.不可重复读:一个事务两次读同一行数据,可是这两次读到的数据不一样。 【被别人修改了】
    3.幻读:一个事务执行两次查询,但第二次查询比第一次查询多出了一些数据行。 【别人新增了数据导致发现数据发生了变化】
    4.丢失更新:撤消一个事务时,把其它事务已提交的更新的数据覆盖了。【撤销时,别人也修改了数据】
  3. spring事务底层实现的原理
    事务不成功就需要回滚,事务底层是基于Aop实现的。AOP底层是动态代理。动态代理底层是反射。
    InvocationHandler接口的invoke方法
    4、解释
        //读未提交:一个事务,允许读到另一个事务修改但是未提交的数据。- 脏读
        //读已提交:一个事务,读取数据是另外一个事务提交后的数据。但是,本事务两次读数据时,再来一个事务对其操作,会产生两次读的数据不一样。-不可重复读 - 工作中的级别
        //可重复读:对上面问题的解决。但是两次读时 如果有新增的数据,发现两次数据量不一样。-幻读     - mysql默认级别
        //串行化:事务读的时候直接加锁,不允许其他操作。

在这里插入图片描述
– 更正 :读未提交,读已提交(工作中,oracle数据库),可重复读(mysql默认级别,但工作中时读已提交数据),串行化

参考:https://blog.csdn.net/weixin_43025343/article/details/131027667

  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 2
    评论
评论 2
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值