Spring源码学习一:spring核心底层原理解析
2021/10/16 17:11:49
本文主要是介绍Spring源码学习一:spring核心底层原理解析,对大家解决编程问题具有一定的参考价值,需要的程序猿们随着小编来一起学习吧!
Bean的创建生命周期:
UserInfoService.class-->无参数构造方法(推断构造方法)-->普通对象-->依赖注入(属性赋值)-->初始化前(调用@PostConstruct的方法) -->初始化(调用实现了InitializingBean的afterPropertiesSet()方法)-->初始化后(AOP)-->代理对象(如果有AOP)-->Bean
1、@PostConstruct:在bean的方法中,如果方法上面有此注解,在bean的初始化前,会调用此方法
2、实现InitializingBean接口,在bean初始化时,如果实现了此接口,则会调用此接口的afterPropertiesSet方法
if(bean instanceof InitializingBean){ // 强转,然后执行afterPropertiesSet方法 ((InitializingBean) bean).afterPropertiesSet(); }
3、spring初始化实例,会调用对象的class对象的getDeclaredConstructor()方法,如果此方法报错,则spring也会报错No default constructor found; nested exception is java.lang.NoSuchMethodException,
如果需要指定,则在方法上面打上@Autowired注解,指定使用构造方法
代码如下:
try { if (System.getSecurityManager() != null) { constructorToUse = AccessController.doPrivileged( (PrivilegedExceptionAction<Constructor<?>>) clazz::getDeclaredConstructor); } else { // 获取默认的构造方法,这里如果报错,则走catch,抛出spring的自定义异常 constructorToUse = clazz.getDeclaredConstructor(); } bd.resolvedConstructorOrFactoryMethod = constructorToUse; } catch (Throwable ex) { throw new BeanInstantiationException(clazz, "No default constructor found", ex); }
4、spring自动注入原理:首先根据类型去找,如果找到多个,那么就再次根据名称去查找,如果根据名称去查找找不到,则会报错。
5、spring事务失效场景:
(1)在service层调用同一个类的其他方法,spring的aop事务是否生效,取决于调用当前方法的对象,是原对象还是代理对象,如果是代理对象,那么就会生效,如果是原对象,那么是不会生效的。
如下面
import org.springframework.beans.factory.annotation.Autowired; import org.springframework.jdbc.core.JdbcTemplate; import org.springframework.stereotype.Service; import org.springframework.transaction.annotation.Transactional; @Service public class TransactionFailureService { @Autowired private JdbcTemplate jdbcTemplate; @Autowired private TransactionFailureService transactionFailureService; @Transactional public void insertOne(){ jdbcTemplate.execute("insert into xxx"); // 这种情况下,insertTow就会失效,因为调用insertTow方法是实际上被代理之后的对象, // 也就是原对象,此对象的方法并没有加上AOP事务 insertTow(); // 这个方法的事务是失效的 // 解决方案:自己注入自己,然后再调用方法: transactionFailureService.insertTow(); // 这个方法的事务是生效的 throw new RuntimeException(""); } @Transactional public void insertTow(){ jdbcTemplate.execute(""); } }
(2)事务管理器和执行sql的数据源不是同一个数据源
这篇关于Spring源码学习一:spring核心底层原理解析的文章就介绍到这儿,希望我们推荐的文章对大家有所帮助,也希望大家多多支持为之网!
- 2024-12-22项目:远程温湿度检测系统
- 2024-12-21《鸿蒙HarmonyOS应用开发从入门到精通(第2版)》简介
- 2024-12-21后台管理系统开发教程:新手入门全指南
- 2024-12-21后台开发教程:新手入门及实战指南
- 2024-12-21后台综合解决方案教程:新手入门指南
- 2024-12-21接口模块封装教程:新手必备指南
- 2024-12-21请求动作封装教程:新手必看指南
- 2024-12-21RBAC的权限教程:从入门到实践
- 2024-12-21登录鉴权实战:新手入门教程
- 2024-12-21动态权限实战入门指南