I wonder why in Spring DI the following bean definition works (I use bean instantiation with a static factory method and Guava's Suppliers.ofInstance):
<bean id="keySupplier" class="com.google.common.base.Suppliers"
factory-method="ofInstance">
<constructor-arg>
<value type="java.lang.String">someReallyLongValue <!-- note line break here -->
</value>
</constructor-arg>
</bean>
but this one doesn't:
<bean id="keySupplier" class="com.google.common.base.Suppliers"
factory-method="ofInstance">
<constructor-arg type="java.lang.String" value="someReallyLongValue" />
</bean>
It throws following exception:
org.springframework.beans.factory.BeanCreationException: Error creating bean with name 'userRepo' defined in class path resource:
(...)
Unsatisfied dependency expressed through constructor argument with index 0 of type [java.lang.Object]:
Ambiguous factory method argument types - did you specify the correct bean references as factory method arguments?
The problem is, in my case, when I use first bean definition with really long string as a value my editor breaks line after last character of string, which causes that string is passed with additional whitespace to Suppliers.ofInstance and in result it breaks my code.
The second definition would be more strict about whitespace but, suprisingly, it doesn't work (it probably doesn't cope with generic type, despite the type is specified in type attribute).
Can I force Spring to ignore whitespace in <value> tag somehow?
Or do I use <constructor-arg type="java.lang.String" value="someReallyLongValue" /> properly? Or should I file an issue because it's a Spring bug?
I'd rather not make any assumptions about the string (i.e. use string.trim() here).
C-S-fin Eclipse), I don't like the fact that application will be broken because of that. – Xaerxess Mar 27 '12 at 8:50