我正在将一个spring MVC 3应用程序转换为spring MVC 4应用程序,因此我主要是将它转换为基于注释的,现在有一个下面的xml文件标记
<context:component-scan
base-package="life.mvc.framework.controller, ca.web.apps.exampleapp.controller" />
现在我在这个包中做了什么,我在这些类中添加了这些注释,如下所示
@Configuration
@EnableWebMvc
@ComponentScan({ "ca.web.apps.exampleapp.controller" })
以及其他包类,我已添加如下所示
@Configuration
@EnableWebMvc
@ComponentScan({ "life.mvc.framework.controller"})
但是当我将这些更改部署到服务器时,网页没有打开,也没有出现错误请告知我正在做的错误