欢迎来到天天文库
浏览记录
ID:13041013
大小:56.50 KB
页数:6页
时间:2018-07-20
《spring mvc 入门[转载]》由会员上传分享,免费在线阅读,更多相关内容在教育资源-天天文库。
1、转自:http://www.ideawu.net/person/spring_mvc.htmlSpringMVC入门WrittenbyideawuPostedon2006-08-26这篇文章将教你快速地上手使用Spring框架.如果你手上有一本《SpringinAction》,那么你最好从第三部分"Spring在Web层的应用--建立Web层"开始看,否则那将是一场恶梦!首先,我需要在你心里建立起SpringMVC的基本概念.基于Spring的Web应用程序接收到http://localhost:8080/hello.do(事实上请求路径是/hello.do)的请求后,Spring将这个请求
2、交给一个名为helloController的程序进行处理,helloController再调用一个名为hello.jsp的jsp文件生成HTML代码发给用户的浏览器显示.上面的名称(/hello.do,helloController,hello.jsp)都是变量,你可以更改.在SpringMVC中,jsp文件中尽量不要有Java代码,只有HTML代码和"迭代(forEach)"与"判断(if)"两个jstl标签.jsp文件只作为渲染(或称为视图View)模板使用.好了,我们开始吧.首先我们需要一个放在WEB-INF目录下的web.xml文件:web.xml:1
3、0"encoding="UTF-8"?>23789contextConfigLocation4、me>1011/WEB-INF/database.xml12/WEB-INF/applicationContext.xml1314151617org.springframework.web.context.ContextLoaderListener18192021encodingFilter22org.s
4、me>1011/WEB-INF/database.xml12/WEB-INF/applicationContext.xml1314
5、pringframework.web.filter.CharacterEncodingFilter2324encoding25UTF-82627282930encodingFilter31*.do3233346、t>35ideawu36org.springframework.web.servlet.DispatcherServlet37138394041ideawu42*.do4344457、-list>46index.jsp47index.html4849505152http://java.sun.com/jsp/jstl/core53
6、t>35ideawu36org.springframework.web.servlet.DispatcherServlet37138394041ideawu42*.do4344457、-list>46index.jsp47index.html4849505152http://java.sun.com/jsp/jstl/core53
7、-list>46index.jsp47index.html4849505152http://java.sun.com/jsp/jstl/core53
此文档下载收益归作者所有