这篇文章将教你快速地上手使用 Spring 框架,如果你手上有一本《Spring in Action》, 那么你最好从第三部分\"Spring 在
首先, 我需要在你心里建立起 Spring MVC 的基本概念. 基于 Spring 的 Web 应用程序接收到 http://localhost:8080/hello.do(事实上请求路径是 /hello.do) 的请求后, Spring 将这个请求交给一个名为 helloController 的程序进行处理, helloController 再调用 一个名为 hello.JSP 的 jsp 文件生成 HTML 代码发给用户的浏览器显示. 上面的名称(/hello.do, helloController, hello.jsp) 都是变量, 你可以更改.
字串1
在 Spring MVC 中, jsp 文件中尽量不要有 Java 代码, 只有 HTML 代码和\"迭代(forEach)\"与\"判断(if)\"两个jstl标签. jsp 文件只作为渲染(或称为视图 View)模板使用.
字串6
好了, 我们开始吧. 首先我们需要一个放在 WEB-INF 目录下的 web.XML 文件:
字串4
web.xml:1 <?xml version=\"1.0\" encoding=\"UTF-8\"?>
2
3 <web-app version=\"2.4\" xmlns=\"http://java.sun.com/xml/ns/j2ee\"
4 xmlns:xsi=\"http://www.w3.org/2001/XMLSchema-instance\"
5 xsi:schemaLocation=\"http://java.sun.com/xml/ns/j2ee字串5
6 http://java.sun.com/xml/ns/j2ee/web-app_2_4.xsd\">
7
8 <context-param>
9 <param-name>contextConfigLocation</param-name>
10 <param-value>
11 /WEB-INF/database.xml
12 /WEB-INF/applicationContext.xml
13 </param-value>
14 </context-param>
15
16 <listener> 字串7
17 <listener-class>org.springFramework.web.context.ContextLoaderListener</listener-class>
18 </listener>
19
20 <filter>
21 <filter-name>encodingFilter</filter-name>
22 <filter-class>org.springframework.web.filter.CharacterEncodingFilter</filter-class>
23 <init-param> 字串2
24 <param-name>encoding</param-name>
25 <param-value>UTF-8</param-value>
26 </init-param>
27 </filter>
28
29 <filter-mapping>
30 <filter-name>
0
![我要研发网[www.51dev.com]](/templets/images/toplogo.gif)
