使用 java.io.File 类型创建 Bean 时出错 [构造函数参数类型不明确]
我有以下弹簧豆配置
<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只有一个带有单个字符串参数的构造函数,所以我不确定为什么这是模棱两可的。任何帮助赞赏。