spring之InitializingBean接口的使用
程序员文章站
2022-03-19 10:58:55
...
//记录几个spring的接口以及使用 //从名字可以看出来这个接口主要用于初始化bean用。在bean被初始化后就会执行afterPropertiesSet方法。 public interface InitializingBean { void afterPropertiesSet() throws Exception; } //其实现原理如下该方法在AbstractAutowireCapableBeanFactory中 protected void invokeInitMethods(String beanName, final Object bean, RootBeanDefinition mbd) throws Throwable { //判断是否实现了InitializingBean接口 boolean isInitializingBean = (bean instanceof InitializingBean); if (isInitializingBean && (mbd == null || !mbd.isExternallyManagedInitMethod("afterPropertiesSet"))) { if (logger.isDebugEnabled()) { logger.debug("Invoking afterPropertiesSet() on bean with name '" + beanName + "'"); } if (System.getSecurityManager() != null) { try { AccessController.doPrivileged(new PrivilegedExceptionAction<Object>() { @Override public Object run() throws Exception { //执行afterPropertiesSet ((InitializingBean) bean).afterPropertiesSet(); return null; } }, getAccessControlContext()); } catch (PrivilegedActionException pae) { throw pae.getException(); } } else { //执行afterPropertiesSet ((InitializingBean) bean).afterPropertiesSet(); } } if (mbd != null) { String initMethodName = mbd.getInitMethodName(); if (initMethodName != null && !(isInitializingBean && "afterPropertiesSet".equals(initMethodName)) && !mbd.isExternallyManagedInitMethod(initMethodName)) { invokeCustomInitMethod(beanName, bean, mbd); } } } /** 所以我们在写框架的时候如果要进行一些初始化工作就可以实现InitializingBean接口。 */
推荐阅读
-
浅谈Java代码的 微信长链转短链接口使用 post 请求封装Json(实例)
-
Python中处理字符串之endswith()方法的使用简介
-
在Python中处理字符串之isdigit()方法的使用
-
Python中处理字符串之isalpha()方法的使用
-
Python处理字符串之isspace()方法的使用
-
在Python中操作字符串之replace()方法的使用
-
Python中处理字符串之islower()方法的使用简介
-
在Python中处理字符串之ljust()方法的使用简介
-
KVM虚拟化技术之使用Qemu-kvm创建和管理虚拟机的方法
-
JSP 开发之servlet中调用注入spring管理的dao