は私が次のエラーエラータイプはjava.io.File [あいまいなコンストラクタ引数の型]
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?
を取得しています
<bean id="fileBean" class="java.io.File">
<constructor-arg type="java.lang.String"
value="$prop{file.path.property}" />
</bean>
次のSpring Beanの設定がありますしているとのBeanを作成するとき単一のStringパラメータを持つjava.io.File用のコンストラクタが1つしかないため、なぜこれがあいまいであるのかわかりません。どんな助けもありがたい。
同じことが起こったが、例外は私が編集していた別のXMLファイルにあることが判明した –