- 1、本文档共7页,可阅读全部内容。
- 2、有哪些信誉好的足球投注网站(book118)网站文档一经付费(服务费),不意味着购买了该文档的版权,仅供个人/单位学习、研究之用,不得用于商业用途,未经授权,严禁复制、发行、汇编、翻译或者网络传播等,侵权必究。
- 3、本站所有内容均由合作方或网友上传,本站不对文档的完整性、权威性及其观点立场正确性做任何保证或承诺!文档内容仅供研究参考,付费前请自行鉴别。如您付费,意味着您自己接受本站规则且自行承担风险,本站不退款、不进行额外附加服务;查看《如何避免下载的几个坑》。如果您已付费下载过本站文档,您可以点击 这里二次下载。
- 4、如文档侵犯商业秘密、侵犯著作权、侵犯人身权等,请点击“版权申诉”(推荐),也可以打举报电话:400-050-0827(电话支持时间:9:00-18:30)。
查看更多
首先, 我需要在你心里建立起 Spring MVC 的基本概念. 基于 Spring 的 Web 应用程序接收到 http://localhost:8080/hello.do(事实上请求路径是 /hello.do) 的请求后, Spring 将这个请求交给一个名为 helloController 的程序进行处理, helloController 再调用 一个名为 hello.jsp 的 jsp 文件生成 HTML 代码发给用户的浏览器显示. 上面的名称(/hello.do, helloController, hello.jsp) 都是变量, 你可以更改.
在 Spring MVC 中, jsp 文件中尽量不要有 Java 代码, 只有 HTML 代码和迭代(forEach)与判断(if)两个jstl标签. jsp 文件只作为渲染(或称为视图 View)模板使用.
好了, 我们开始吧. 首先我们需要一个放在 WEB-INF 目录下的 web.xml 文件:
web.xml:
1 ?xml version=1.0 encoding=UTF-8?
2
3 web-app version=2.4 xmlns=/xml/ns/j2ee
4 xmlns:xsi=/2001/XMLSchema-instance
5 xsi:schemaLocation=/xml/ns/j2ee
6 /xml/ns/j2ee/web-app_2_4.xsd
7
8 context-param
9 param-namecontextConfigLocation/param-name
10 param-value
11 /WEB-INF/database.xml
12 /WEB-INF/applicationContext.xml
13 /param-value
14 /context-param
15
16 listener
17 listener-classorg.springframework.web.context.ContextLoaderListener/listener-class
18 /listener
19 ????
20 filter
21 filter-nameencodingFilter/filter-name
22 filter-classorg.springframework.web.filter.CharacterEncodingFilter/filter-class
23 init-param
24 param-nameencoding/param-name
25 param-valueUTF-8/param-value
26 /init-param
27 /filter
28
29 filter-mapping
30 filter-nameencodingFilter/filter-name
31 url-pattern*.do/url-pattern
32 /filter-mapping
33
34 servlet
35 servlet-nameideawu/servlet-name
36 servlet-classorg.springframework.web.servlet.DispatcherServlet/servlet-class
37 load-on-startup1/load-on-startup
38 /servlet
39
40 servlet-mapping
41 servlet-nameideawu/servlet-name
42 url-pattern*.do/url-pattern
43 /servlet-mapping
44
45 welcome-file-list
46 welcome-fileindex.jsp/welcome-file
47 welcome-fileindex.html/welcome-file
48 /welcome-file-list
49
50 jsp-config
51 ta
文档评论(0)