ClassPathXmlApplicationContext函数文件未找到异常

时间:2014-07-03 06:24:11

标签: java hibernate maven

我正在使用spring hibernate maven项目。在这里,我找不到异常dispatcher-servlet.xml文件。我应该如何添加路径。或者我应该在.classpath文件中添加类路径条目? 我的文件在web-inf里面。 我试过了ClassPathXmlApplicationContext("WEB-INF/dispatcher-servlet.xml");

ApplicationContext appContext =new ClassPathXmlApplicationContext("dispatcher-servlet.xml");

请帮忙

1 个答案:

答案 0 :(得分:1)

ClassPathXmlApplicationContext期望资源文件位于类路径中,对于maven为resources。所以尝试将dispatcher-servlet.xml放在maven项目的resources文件夹中。