mvc:view-controller标签可以让我们不经过任何handler而直接访问到相关视图。
在springmvc.xml配置文件中配置:
<!-- 配置直接转发的页面 --> <!-- 可以直接相应转发的页面, 而无需再经过 Handler 的方法. --> <mvc:view-controller path="/success" view-name="success"/>
此时,我们可以在浏览器直接输入:springmvc1为我自己的项目名
http://localhost:8080/springmvc1/success
但是,再通过原来的handler访问的方式就会报错了,此时在springmvc.xml中配置以下即可。
<!-- 在实际开发中通常都需配置 mvc:annotation-driven 标签 --> <mvc:annotation-driven></mvc:annotation-driven>
原文地址:https://www.cnblogs.com/xiximayou/p/12179823.html
时间: 2024-10-19 13:20:41