У меня есть следующая конфигурация бобов весны
<bean id="fileBean" class="java.io.File">
<constructor-arg type="java.lang.String"
value="$prop{file.path.property}" />
</bean>
Я получаю следующую ошибку
org.springframework.beans.factory.UnsatisfiedDependencyException:
Error creating bean with name 'fileBean' defined in class path resource [context.xml]:
Unsatisfied dependency expressed through constructor argument with index 0 of type
[java.net.URI]: Ambiguous constructor argument types - did you specify the correct
bean references as constructor arguments?
Существует только один конструктор для java.io.File с одним параметром String, поэтому я не уверен, почему это неоднозначно. Любая помощь приветствуется.