I have a bean definition like spring xml context file
<bean id="idFilter" class="some.package.app.filter.IdFilter" lazy-init="true">
<constructor-arg type="java.lang.String" value="${id.start}"/>
</bean>
Does spring try to resolve the property ${id.start}
while building context?
I would assume since idFilter
is lazily loaded, the property id.start
will not be tried for resolution till the bean is being used.
Is it right?