我有一個Spring項目,我想要在Spring bean XML文件中定義一個特定的Spring bean。我的Spring bean XML文件位於/WEB-INF/spring/root-context.xml
。無法獲得Spring bean
這是我在服務類代碼:
ApplicationContext context = new ClassPathXmlApplicationContext("/WEB-INF/spring/root-context.xml");
這裏是我的錯誤,當我編譯:
parsing XML document from class path resource [WEB-INF/spring/root-context.xml]; nested exception is java.io.FileNotFoundException: class path resource [WEB-INF/spring/root-context.xml] cannot be opened because it does not exist
是的我知道,但我想要的是,我的XML文件,在web-inf可以從MVC層和簡單的服務層類訪問使用ClassPathXmlApplicationContext。有沒有辦法做到這一點 ? –
@Abdessamad BOUTGAYOUT我編輯了答案。 –