在我的web.xml上,我有一个“springmvc”servlet声明(它有一个相应的springmvc-servlet.xml)
我也有我常用的applicationContext.xml文件.
首先加载哪一个? springmvc-servlet.xml还是applicationContext.xml?
我问这个的原因是每当我放置< mvc:annotation-driven /> applicationContext.xml中的元素,我收到严重上下文错误.但是当我将该元素放在springmvc-servlet.xml中时,我的Web应用程序运行正常.
有什么想法吗?
在另一个网络应用程序中,我有< mvc:annotation-driven />在applicationContext.xml中,它运行正常.
附录:
我注意到aop:config的存在与mvc:annotation-driven冲突
最佳答案
applicationContext.xml上下文是dispatcher-servlet.xml上下文的父级.我不知道这是否意味着它首先被加载,但在你的情况下并不重要:
原文链接:https://www.f2er.com/spring/432692.html< mvc:annotation-driven />必须在dispatcher-servlet.xml中,因为它属于应用程序的Web部分.