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的数据源不是同一个数据源