快速业务通道

Spring Web Flow 2.0入门 - 配置Spring Web MVC - 编程入门网

作者 佚名技术 来源 NET编程 浏览 发布时间 2012-06-20
.xsd    http://www.springframework.org/schema/context    http://www.springframework.org/schema/context/spring-context-2.5.xsd">    <!-- 搜索 samples.webflow 包里的 @Component 注解,并将其部署到容器中 -->    <context:component-scan base-package="samples.webflow" />    <!-- 启用基于注解的配置 -->    <context:annotation-config />    <import resource="webmvc-config.xml"/> </beans>

加入注解功能是出于最后运行 Web Flow 示例的需要,在这里只要知道注解功能已被启用就可以了。

创建 webmvc-config.xml

webmvc-config.xml 主要用于配置 Spring Web MVC 。所要做的就是添加一个 view resolver (视图解析器),用于将视图名解析成真实的视图资源。另外,再配置好 URL 请求的 handler (处理器),用于将 URL 请求定向到某个控制器,在本例中,用到的是 UrlFilenameViewController。

清单 6 webmvc-config.xml

<?xml version="1.0" encoding="UTF-8"?> <beans   xmlns="http://www.springframework.org/schema/beans"   xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"   xsi:schemaLocation="    http://www.springframework.org/schema/beans    http://www.springframework.org/schema/beans/spring-beans.xsd">    <bean id="viewResolver"     class="org.springframework.web.servlet.view.InternalResourceViewResolver">     <property name="viewClass"     value="org.springframework.web.servlet.view.JstlView"/>     <property name="prefix" value="/WEB-INF/jsp/"/>     <property name="suffix" value=".jsp"/>    </bean>    <bean id="viewMappings"     class="org.springframework.web.servlet.handler.SimpleUrlHandlerMapping">     <property name="defaultHandler">     <!-- UrlFilenameViewController 会将 "/index" 这样的请求映射成名为 "index" 的视图 -->     <bean class="org.springframework.web.servlet.mvc.UrlFilenameViewController" />    </property>   </bean> </beans>

Spring Web Flow 2.0入门 - 配置Spring Web MVC(4)

时间:2011-02-01 IBM 吕焱飞

创建 index.jsp

现在的 index.jsp 只是显示一行文字。

清单 7 index.jsp

<?xml version="1.0" encoding="utf-8" ?> <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"   "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> <html xmlns="http://www.w3.org/1999/xhtml">   <head>    <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />    <title>Cart Application</title>   </head>   <body>    <h1>Hello!</h1>   </body> </html>

运行应用程序

将应用程序发布到 Tomcat 容器,再通过 http://localhost:8080/CartApp/spring/index.jsp 访问 index.jsp 页面(应用程序所在文件夹名是 CartApp ),测试 Spring Web MVC 配置是否正确。如果

凌众科技专业提供服务器租用、服务器托管、企业邮局、虚拟主机等服务,公司网站:http://www.lingzhong.cn 为了给广大客户了解更多的技术信息,本技术文章收集来源于网络,凌众科技尊重文章作者的版权,如果有涉及你的版权有必要删除你的文章,请和我们联系。以上信息与文章正文是不可分割的一部分,如果您要转载本文章,请保留以上信息,谢谢!

分享到: 更多

Copyright ©1999-2011 厦门凌众科技有限公司 厦门优通互联科技开发有限公司 All rights reserved

地址(ADD):厦门软件园二期望海路63号701E(东南融通旁) 邮编(ZIP):361008

电话:0592-5908028 传真:0592-5908039 咨询信箱:web@lingzhong.cn 咨询OICQ:173723134

《中华人民共和国增值电信业务经营许可证》闽B2-20100024  ICP备案:闽ICP备05037997号