任何人都可以告诉我,如何配置包含注释和配置的控制器的spring mvc项目?
我想使用ParametrizedViewController配置静态页面,其余部分使用Annotations。
但它不起作用?
请有人告诉配置文件(在我的情况下是dispatcher-servlet.xml),它将包含这两个要求。
提前致谢。
答案 0 :(得分:1)
<!-- Registering MVC stuff necessary for @RequestMapping -->
<mvc:annotation-driven />
<!-- Your view controller definition -->
<mvc:view-controller path="/home" view-name="home" />