Exception Servlet.init() for servlet [mvc] threw exception

Root Cause

org.springframework.beans.factory.BeanDefinitionStoreException: IOException parsing XML document from class path resource [springmvc.xml]; nested exception is java.io.FileNotFoundException: class path resource [springmvc.xml] cannot be opened because it does not exist

这类报错500问题通常是路径或者配置问题:
有三种:
1、在springmvc.xml中写 的时候,idea推荐的XML约束是cache的,我们把它全换成mvc的就可以了.
2、错把applicationContext.xml放在了java包下,应该放在resource下
3、配置错误,在idea中ctrl+alt+shift+s,左侧Modules选项中点击Exception Servlet.init() for servlet [mvc] threw exception_第1张图片

你可能感兴趣的:(web.xml,mybatis,xml)