bean class instantiation in spring for a class without default constructor

谁说我不能喝 提交于 2019-12-02 11:38:07

You can define it in the XML file as a spring bean passing all necessary parameters to instantiate it.

sample:

<bean id="xyz" class="com.a.b.Xyz" >
    <constructor-arg index="0" ref="anotherBean"/>
    <constructor-arg index="1" value="12"/> 
</bean>

You'll need to provide <constructor-arg> elements in your application context config file, as described in the documentation.

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!