以下のように ClassPathXmlApplicationContext クラスを使用してSpring xmlを読み込もうとしています。
ApplicationContext context = new ClassPathXmlApplicationContext("file:../WebContent/WEB-INF/dispatcher-servlet.xml");
Service service = (Service ) context.getBean("service");
しかし、FileNotFound 例外が発生しています。dispatcher-servlet.xml は、WebContent/WEB-INF/dispatcher-servlet.xml の下にあります。ファイルを Src フォルダーに移動すると、正常に動作します。
私はさまざまな方法を試しました
ApplicationContext context = new ClassPathXmlApplicationContext("classpath:../WebContent/WEB-INF/dispatcher-servlet.xml");
ApplicationContext context = new ClassPathXmlApplicationContext("/WEB-INF/dispatcher-servlet.xml");
しかし、これらは機能しません。誰かがいくつかの入力を提供できますか。