単純な春の例を実行しようとすると、上記の例外が発生します
次のコード行は、beans1.xmlからSpringBeanを読み取ろうとします
ApplicationContext context = new ClassPathXmlApplicationContext("beans1.xml");
以下は私が得ている完全な例外です。
Exception in thread "main" org.springframework.beans.factory.BeanDefinitionStoreException: IOException parsing XML document from class path resource [beans1.xml]; nested exception is java.io.FileNotFoundException: class path resource [beans1.xml] cannot be opened because it does not exist
プログラムがファイルを検出することを期待して、可能なすべての場所にxmlファイルを配置しました。しかし、それでもこのプログラムはこのBean構成ファイルを見つけることができません。また、ビルドツールとしてMavenを使用していますが、EclipseIDEを使用してプログラムを実行しています。