我在编程过程中是有ApplicationContext.xml的文件,但是在tomcat中加载的时候总是出现找不到这个文件错误
但是出现:Exceptionsendingcontextinitializedeventtolistenerinstanceofclassorg.springframew...
但是出现: Exception sending context initialized event to listener instance of class org.springframework.web.context.ContextLoaderListenerorg.springframework.beans.factory.BeanDefinitionStoreException: IOException parsing XML document from class path resource [applicationContext.xml]; nested exception is java.io.FileNotFoundException: class path resource [applicationContext.xml] cannot be opened because it does not exist
的错误,求高手帮忙看看肿么回事???谢谢 展开
的错误,求高手帮忙看看肿么回事???谢谢 展开
1个回答
展开全部
web.xml里边没有配置<context>标签及监听器,
servelt初始化方法init()里边也要加上context初始化的代码
web.xml里边加上
<listener>
<listener-class>org.springframework.web.context.ContextLoaderListener</listener-class>
</listener>
<context-param>
<param-name>contextConfigLocation</param-name>
<param-value>/WEB-INF/classes/applicationContext.xml</param-value>
</context-param>
Servlet的初始化方法init()里加上
ServletContext servletContext = this.getServletContext();
applicationContext = WebApplicationContextUtils.getRequiredWebApplicationContext(servletContext);
别忘引入相应的jar包
servelt初始化方法init()里边也要加上context初始化的代码
web.xml里边加上
<listener>
<listener-class>org.springframework.web.context.ContextLoaderListener</listener-class>
</listener>
<context-param>
<param-name>contextConfigLocation</param-name>
<param-value>/WEB-INF/classes/applicationContext.xml</param-value>
</context-param>
Servlet的初始化方法init()里加上
ServletContext servletContext = this.getServletContext();
applicationContext = WebApplicationContextUtils.getRequiredWebApplicationContext(servletContext);
别忘引入相应的jar包
更多追问追答
追答
里的路径改为相对路径试试,
/WEB-INF/applicationContext.xml
看你错误应该是这个路径不对,具体路径你去tomcat的webapps下找相应的工程,看你自己把这个xml放哪了,如果在src包就用/WEB-INF/classes/applicationContext.xml
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询