无法打开ServletContext资源-applicationContext.xml

时间:2018-09-11 13:30:44

标签: spring

我试图将我的java ee应用程序从struts迁移到spring,作为第一步,我将jsp中的标签从某个文件更改为与spring等效。

  1. 添加Spring taglibs

支柱

<html-em:form> ... </html-en:form>

到春天

<form:form> ... </form:form>等。

我一直在更改,直到收到上述错误

未找到WebApplicationContext,未注册任何上下文加载器侦听器

我看到很多帖子提到在

中添加监听器
web.xml

所以我添加了以下内容

<listener>
    <listener-class>
                 org.springframework.web.context.ContextLoaderListener
            </listener-class>
</listener>

现在它给了我

无法打开ServletContext资源错误

经过一些在线研究,我意识到我需要拥有

applicationContext.xml

在我的项目中。但是我不知道在哪里可以找到这个文件。

我只有一个

ApplicationContext-uvo.xml在我的Javasource中的某处

有人可以指导我如何解决此错误吗? 提前感谢

0 个答案:

没有答案