作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我需要在 bean 属性设置后做一些初始化工作,
ApplicationContext context = new ...;
AutowireCapableBeanFactory factory = context.getAutowireCapableBeanFactory();
// autowireBean only populate the fields, but never invoke afterPropertiesSet().
factory.autowireBean(bean);
// Should I set it manually?
// if (bean instanceof InitializingBean) {
// ((InitializingBean) bean).afterPropertiesSet();
// }
// if (bean instanceof ApplicationContextAware) {
// ((ApplicationContextAware) bean).setApplicationContext(context);
// }
// if ...
最佳答案
试试这个:
factory.autowireBean(bean);
bean = (YourBean) factory.initializeBean(bean, "anyName");
它与@PostConstruct
(我推荐)一起工作,因此它也应该执行afterPropertiesSet()
。 anyName
是bean的名字,可能在BeanNameAware
时用到涉及接口(interface)。
关于java - AutowireCapableBeanFactory.autowireBean(bean) 从不调用 InitlizingBean.afterPropertiesSet()?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/5610699/
我有一些以编程方式创建的 bean,我正在通过 AutowireCapableBeanFactory.autowireBean() 初始化它们,如下所示: spring.xml:
我正在尝试使用 AutowireCapableBeanFactory.autowireBeanProperties() 手动注入(inject) bean Autowiring 依赖项。但它似乎只有在
我需要在 bean 属性设置后做一些初始化工作, ApplicationContext context = new ...; AutowireCapableBeanFactory factory =
我是一名优秀的程序员,十分优秀!