ops :o
Type: Posts; User: toleb; Keyword(s):
ops :o
finally i solved using dozer :)
but if someone has solution using spring directly, i'm here :)
Thanks
<bean id="mybean" class="net.roseindia.Inject" >
<property name="name" value="#{sb.name}"/>
</bean>
and the output is
Name: #{sb.name}
I'm reading these pages but i don't understand what kind of method i have to invoke....
Take a look here:
SourceBean sb = new SourceBean();
sb.setName("myName");
XmlBeanFactory beanFactory = new XmlBeanFactory(new ClassPathResource("myxml.xml"));
Inject demo = (Inject)...
@Hetal B
the property of "bean1" a is already valorized, i wan't to set it at "val1"
First of all thanks for helping me!
I'm using spring 3 and now i'll read Chapter 6 of the Spring 3 reference documentation
very Thanks
Hi!
First of all excuse me if i'd opened this 3d in correct section...
I would like to inject a property in a bean from an another's bean property...
Can someone explain me the way to do...