首先,我需要在你心里建立起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"?> </listener-class> </filter-class> </servlet-class>
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
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>
17 <listener-class>org.springframework.web.context.ContextLoaderListener
18 </listener>
19
20 <filter>
21 <filter-name>encodingFilter</filter-name>
22 <filter-class>org.springframework.web.filter.CharacterEncodingFilter
23 <init-param>
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>encodingFilter</filter-name>
31 <url-pattern>*.do</url-pattern>
32 </filter-mapping>
33
34 <servlet>
35 <servlet-name>ideawu</servlet-name>
36 <servlet-class>org.springframework.web.servlet.DispatcherServlet
37 <load-on-startup>1</load-on-startup>
38 </servlet>
39
40 <servlet-mapping>
41 <servlet-name>ideawu</servlet-name>
42 <url-pattern>*.do</url-pattern>
43 </servlet-mapping>
44
45 <welcome-file-list>
46 <welcome-file>index.jsp</welcome-file>
47 <welcome-file>index.html</welcome-file>
48 </welcome-file-list>
49
50 <jsp-config>
51 <taglib>
52 <taglib-uri>http://java.sun.com/jsp/jstl/core</taglib-uri>
53 <taglib-location>/WEB-INF/tld/c.tld</taglib-location>
54 </taglib>
55 <taglib>
56 <taglib-uri>http://java.sun.com/jsp/jstl/fmt</taglib-uri>
57 <taglib-location>/WEB-INF/tld/fmt.tld</taglib-location>
58 </taglib>
59 </jsp-config>
60
61 </web-app>
它配置了以下功能:
◆配置DispatcherServlet(servlet标签),它是一个Java Servlet程序。我们将它命名为ideawu。然后我们再配置Servlet映射(servlet-mapping标签),也就是你希望哪些请求被DispatcherServlet处理。这里,我们设置后缀名为do(*.do)的所有URL请求都被名为ideawu的DispatcherServlet的程序处理。选择.do只是一个习惯,但是你不要选择.html!虽然《Spring in Action》选择了.html,但是那是一种非常糟糕的作法,特别是你整合Apache和Tomcat的时候。
◆配置CharacterEncodingFilter(filter标签),否则你会发现中文乱码。因为我的jsp和html文件都是UTF-8编码的,所以我在param-value标签中设置了UTF-8。估计你使用的是GB2312或者GBK,立即转到UTF-8上来吧!
◆分解配置文件。context-param标签指明我们的配置文件还有/WEB-INF/database.xml和/WEB-INF/applicationContext.xml.ContextLoaderListener(listener标签)由此得知配置文件是哪些,它会将它们载入。
因为我们将DispatcherServlet命名为ideawu,所以我们在WEB-INF目录下建立一个名为ideawu-servlet.xml的文件:
ideawu-servlet.xml:
|
◆配置InternalResourceViewResolver,它是jsp渲染模板的处理器。如果你告诉InternalResourceViewResolver处理一个名为hello的模板时,它会渲染/WEB-INF/jsp/hello.jsp文件。把jsp文件放到/WEB-INF/jsp/目录下是被鼓励的,这样可以防止用户不经过Controller直接访问jsp文件从而出错(有些顽皮的人很喜欢这样做)。
◆配置SimpleUrlHandlerMapping,在上面的配置文件中,/hello.do的请求将被helloController处理。"/hello.do"和"helloController"是变量,你可以更改。但是你注意到了吗,hello.do以.do作为后缀名。如果这里(本文的条件下)你不使用.do作为后缀名,就没有程序来处理这个请求了。因为DispatcherServlet将收到的请求转交给SimpleUrlHandlerMapping,DispatcherServlet收不到的请求,SimpleUrlHandlerMapping当然也收不到了。你可以在props标签内配置多个prop标签。
◆我们将在后面编写com.ideawu.HelloController类。
上面,我们在web.xml文件中告诉ContextLoaderListener,我们还有另外两个配置文件/WEB-INF/database.xml和/WEB-INF/applicationContext.xml.
applicationContext.xml:
1<?xml version="1.0" encoding="UTF-8"?>
2 <!DOCTYPE beans PUBLIC "-//SPRING//DTD BEAN//EN" "
http://www.springframework.org/dtd/spring-beans.dtd">
3
4 <beans>
5
6 <bean id="propertyConfigurer"
class="org.springframework.beans.factory.config.PropertyPlaceholderConfigurer">
7 <property name="locations">
8 <list>
9 <value>/WEB-INF/jdbc.properties</value>
10 </list>
11 </property>
12 </bean>
13
14 </beans>
它配置了以下功能:
◆读取/WEB-INF/jdbc.properties文件。你可以在list标签中配置多个value标签。
database.xml:
1<?xml version="1.0" encoding="UTF-8"?> destroy-method="close">
2 <!DOCTYPE beans PUBLIC "-//SPRING//DTD BEAN//EN" "
http://www.springframework.org/dtd/spring-beans.dtd">
3
4 <beans>
5
6 <!-- Remove this if your database setting is fine.
7 <bean id="dataSource" class="org.apache.commons.dbcp.BasicDataSource"
8 <property name="driverClassName" value="${jdbc.driverClassName}"/>
9 <property name="url" value="${jdbc.url}"/>
10 <property name="username" value="${jdbc.username}"/>
11 <property name="password" value="${jdbc.password}"/>
12 </bean>
13 -->
14
15 <!-- Transaction manager for a single JDBC DataSource
16 <bean id="transactionManager"
class="org.springframework.jdbc.datasource.DataSourceTransactionManager">
17 <property name="dataSource" ref="dataSource"/>
18 </bean>
19 -->
20
21 <!--
22 <bean id="attributeManager" class="com.ideawu.core.AttributeManager">
23 <property name="dataSource" ref="dataSource"/>
24 </bean>
25 -->
26
27 </beans>
它配置了以下功能(不过,已经注释掉了):
◆配置数据库连接。类似${jbbc.url}是一种访问变量的方法。我们可以从/WEB-INF/jdbc.properties中找到这个变量的值。如果你的数据库已经配置好,就将第一个注释去掉。
jdbc.properties:
|
|
return new ModelAndView("hello");告诉InternalResourceViewResolver jsp模板的名字叫作hello.request.setAttribute()设置的对象我们可以在jsp文件中使用。
hello.jsp:
|
(责任编辑 火凤凰 sunsj@51cto.com TEL:(010)68476636-8007)