标签: java spring
答案 0 :(得分:0)
使用init-method属性。
<beans> <bean id="myBean" class="..." init-method="init"/> </beans>
这将在实例化bean时调用“init”方法。