springMVC學習筆記(二)-----註解和非註解入門小程序

  最近一直在作一個電商的項目,週末加班,忙的都沒有時間更新博客了。終於在上週五上線了,能夠輕鬆幾天了。閒話不扯淡了,繼續談談springMvc的學習。html

  如今,用到SpringMvc的大部分使用全註解配置,但全註解配置也是由非註解發張而來的。因此,今天就談談springMvc最基礎的註解和非註解的配置以及開發模式。前端

一:基礎環境準備

1.功能需求:一個簡單的商品列表查詢java

2.開發環境:eclipse,java1.7或1.6,springmvc版本:3.2web

3.springMvc所需jar包(必定包括spring-webmvc-3.2.0.RELEASE.jar):spring

 4.在web.xml中配置前端控制器(web.xml中的內容)數據庫

 1 <?xml version="1.0" encoding="UTF-8"?>
 2 <web-app version="2.5" xmlns="http://java.sun.com/xml/ns/javaee"
 3  xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
 4  xsi:schemaLocation="http://java.sun.com/xml/ns/javaee  5  http://java.sun.com/xml/ns/javaee/web-app_2_5.xsd">
 6     <!-- springMvc前端控制器配置 -->
 7     <servlet>
 8         <servlet-name>springmvc</servlet-name>
 9         <servlet-class>org.springframework.web.servlet.DispatcherServlet</servlet-class>
10         <init-param>
11         <!-- contextConfigLocation:指定springmvc配置的加載位置,若是不指定則默認加 12  載WEB-INF/servlet名稱—servlet.xml(springmvc-servlet.xml) 13          -->
14             <param-name>contextConfigLocation</param-name>
15             <param-value>classpath:springmvc.xml</param-value>
16         </init-param>
17         <!-- load-on-startup:表示servlet隨服務啓動; -->
18         <load-on-startup>1</load-on-startup>
19     </servlet>
20     <servlet-mapping>
21         <servlet-name>springmvc</servlet-name>
22         <!-- 
23  第一種:*.action 或者 *.do,訪問以.action或*.do結尾 由DispatcherServlet進行解析 24  第二種:/,因此訪問的地址都由DispatcherServlet進行解析,對於靜態文件的解析須要配置不讓DispatcherServlet進行解析 25  使用此種方式能夠實現 RESTful風格的url 26  第三種:/*,這樣配置不對,使用這種配置,最終要轉發到一個jsp頁面時, 27  仍然會由DispatcherServlet解析jsp地址,不能根據jsp頁面找到handler,會報錯。 28        -->
29         <url-pattern>*.action</url-pattern>
30     </servlet-mapping>
31     <!-- springMvc前端控制器配置 -->
32     
33     <welcome-file-list>
34         <welcome-file>index.jsp</welcome-file>
35     </welcome-file-list>
36 </web-app>

 5.創建一個sourceforder,命名爲config,在config中增長一個springmvc.xml文件:json

  (1).在springmvc.xml中配置處理器適配器spring-mvc

1     <!-- 處理器適配器 全部處理器適配器都實現 HandlerAdapter接口 -->
2     <bean class="org.springframework.web.servlet.mvc.SimpleControllerHandlerAdapter" />

經過查看源碼,可知此適配器能執行實現Controller接口的handler:mvc

6.模擬的商品實體:app

 1 package com.springmvc.entity;  2 
 3 import java.util.Date;  4 
 5 public class Items {  6     private Integer id;  7 
 8     private String name;  9 
10     private Float price; 11 
12     private String pic; 13 
14     private Date createtime; 15 
16     private String detail; 17 
18     public Integer getId() { 19         return id; 20  } 21 
22     public void setId(Integer id) { 23         this.id = id; 24  } 25 
26     public String getName() { 27         return name; 28  } 29 
30     public void setName(String name) { 31         this.name = name == null ? null : name.trim(); 32  } 33 
34     public Float getPrice() { 35         return price; 36  } 37 
38     public void setPrice(Float price) { 39         this.price = price; 40  } 41 
42     public String getPic() { 43         return pic; 44  } 45 
46     public void setPic(String pic) { 47         this.pic = pic == null ? null : pic.trim(); 48  } 49 
50     public Date getCreatetime() { 51         return createtime; 52  } 53 
54     public void setCreatetime(Date createtime) { 55         this.createtime = createtime; 56  } 57 
58     public String getDetail() { 59         return detail; 60  } 61 
62     public void setDetail(String detail) { 63         this.detail = detail == null ? null : detail.trim(); 64  } 65 }
View Code

7.開發handler(及controller):ItemsController01.java

  須要實現 controller接口,才能由org.springframework.web.servlet.mvc.SimpleControllerHandlerAdapter適配器執行。

ItemsController01.java的內容:

 1 package com.springmvc.controller;  2 
 3 import java.util.ArrayList;  4 import java.util.List;  5 
 6 import javax.servlet.http.HttpServletRequest;  7 import javax.servlet.http.HttpServletResponse;  8 
 9 import org.springframework.web.servlet.ModelAndView; 10 import org.springframework.web.servlet.mvc.Controller; 11 
12 import com.springmvc.entity.Items; 13 
14 /**
15  * 16  * @author 阿赫瓦里 17  * @Description:實現controller接口的 處理器 18  * 19  */
20 public class ItemsController01 implements Controller { 21 
22     public ModelAndView handleRequest(HttpServletRequest req, 23             HttpServletResponse res) throws Exception { 24         //調用service查找 數據庫,查詢商品列表,這裏使用靜態數據模擬
25         List<Items> itemsList = new ArrayList<Items>(); 26         //向list中填充靜態數據
27         
28         Items items_1 = new Items(); 29         items_1.setName("筆記本電腦"); 30  items_1.setPrice(6000f); 31         items_1.setDetail("聯想筆記本電腦"); 32         
33         Items items_2 = new Items(); 34         items_2.setName("蘋果手機"); 35  items_2.setPrice(5000f); 36         items_2.setDetail("iphone6手機!"); 37         
38  itemsList.add(items_1); 39  itemsList.add(items_2); 40 
41         //返回ModelAndView
42         ModelAndView modelAndView =  new ModelAndView(); 43         //至關 於request的setAttribut,在jsp頁面中經過itemsList取數據
44         modelAndView.addObject("itemsList", itemsList); 45         //指定視圖
46         modelAndView.setViewName("/WEB-INF/jsp/items/itemsList.jsp"); 47 
48         return modelAndView; 49  } 50 
51 }

8.視圖jsp編寫:itemsList.jsp

 1 <%@ page language="java" contentType="text/html; charset=UTF-8"
 2  pageEncoding="UTF-8"%>
 3 <%@ taglib uri="http://java.sun.com/jsp/jstl/core" prefix="c" %>
 4 <%@ taglib uri="http://java.sun.com/jsp/jstl/fmt" prefix="fmt"%>
 5 <!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
 6 <html>
 7 <head>
 8 <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
 9 <title>查詢商品列表</title>
10 </head>
11 <body> 
12 <form action="${pageContext.request.contextPath }/item/queryItem.action" method="post">
13 查詢條件: 14 <table width="100%" border=1>
15 <tr>
16 <td><input type="submit" value="查詢"/></td>
17 </tr>
18 </table>
19 商品列表: 20 <table width="100%" border="0">
21 <tr>
22     <td>商品名稱</td>
23     <td>商品價格</td>
24     <td>生產日期</td>
25     <td>商品描述</td>
26     <td>操做</td>
27 </tr>
28 <c:forEach items="${itemsList }" var="item" >
29 <tr>
30     <td>${item.name }</td>
31     <td>${item.price }</td>
32     <td><fmt:formatDate value="${item.createtime}" pattern="yyyy-MM-dd HH:mm:ss"/></td>
33     <td>${item.detail }</td>
34     
35     <td><a href="${pageContext.request.contextPath }/item/editItem.action?id=${item.id}">修改</a></td>
36 
37 </tr>
38 </c:forEach>
39 
40 </table>
41 </form>
42 </body>
43 
44 </html>
View Code

9.在springmvc.xml中配置handler

    將編寫Handlerspring容器加載

<!-- 配置Handler -->
    <bean id="itemsController1" name="/queryItems_test1.action" class="com.springmvc.controller.ItemsController01" />

10.配置處理器映射器

<!-- 處理器映射器 -->
    <!-- 根據bean的name進行查找Handler 將action的url配置在bean的name中 -->
    <bean class="org.springframework.web.servlet.handler.BeanNameUrlHandlerMapping" />

11.配置視圖解析器

<!-- 視圖解析器 解析jsp解析,默認使用jstl標籤,classpath下的得有jstl的包 -->
    <bean class="org.springframework.web.servlet.view.InternalResourceViewResolver">
        <!-- 配置jsp路徑的前綴 -->
        <property name="prefix" value="/WEB-INF/jsp/"/>
        <!-- 配置jsp路徑的後綴 -->
        <property name="suffix" value=".jsp"/>
    </bean>

12.部署調試應該就Ok了,可是注意11步驟中的配置,若是配置了前綴和後綴,controller中的視圖路徑就不寫前綴和後綴了,若是不配置,就寫全名就能夠了。

二:非註解的處理器和映射器

1.非註解處理器映射器

  處理器映射器:

org.springframework.web.servlet.handler.BeanNameUrlHandlerMapping

  另外一個映射器:

org.springframework.web.servlet.handler.SimpleUrlHandlerMapping

        <!--簡單url映射 -->
    <bean class="org.springframework.web.servlet.handler.SimpleUrlHandlerMapping">
        <property name="mappings">
            <props>
                <!-- 對itemsController1進行url映射,url是/queryItems1.action -->
                <prop key="/queryItems1.action">itemsController1</prop>
                <prop key="/queryItems2.action">itemsController1</prop>
                <prop key="/queryItems3.action">itemsController2</prop>
            </props>
        </property>
    </bean>

多個映射器能夠並存,前端控制器判斷url能讓哪些映射器映射,就讓正確的映射器處理。

2.非註解處理器適配器

 1 package com.springmvc.controller;  2 
 3 import java.io.IOException;  4 import java.util.ArrayList;  5 import java.util.List;  6 
 7 import javax.servlet.ServletException;  8 import javax.servlet.http.HttpServletRequest;  9 import javax.servlet.http.HttpServletResponse; 10 
11 import org.springframework.web.HttpRequestHandler; 12 
13 import com.springmvc.entity.Items; 14 
15 /**
16  * 17  * @author 阿赫瓦里 18  * @Description:實現HttpRequestHandler接口的 處理器 19  * 20  */
21 public class ItemsController02 implements HttpRequestHandler { 22 
23     public void handleRequest(HttpServletRequest req, HttpServletResponse resp) 24             throws ServletException, IOException { 25         //調用service查找 數據庫,查詢商品列表,這裏使用靜態數據模擬
26         List<Items> itemsList = new ArrayList<Items>(); 27         //向list中填充靜態數據
28         
29         Items items_1 = new Items(); 30         items_1.setName("筆記本電腦"); 31  items_1.setPrice(6000f); 32         items_1.setDetail("聯想筆記本電腦"); 33         
34         Items items_2 = new Items(); 35         items_2.setName("蘋果手機"); 36  items_2.setPrice(5000f); 37         items_2.setDetail("iphone6手機!"); 38         
39  itemsList.add(items_1); 40  itemsList.add(items_2); 41         //設置模型數據
42         req.setAttribute("itemsList", itemsList); 43         //設置轉發的視圖
44         req.getRequestDispatcher("/WEB-INF/jsp/items/itemsList.jsp").forward(req, resp); 45         //使用此方法能夠經過修改response,設置響應的數據格式,好比響應json數據
46         /*
47  response.setCharacterEncoding("utf-8"); 48  response.setContentType("application/json;charset=utf-8"); 49  response.getWriter().write("json串");*/
50  } 51     
52 }
View Code

3.DispatcherSerlvet.properties

前端控制器從上邊的文件中加載處理映射器、適配器、視圖解析器等組件,若是不在springmvc.xml中配置,使用默認加載的。

三:註解的處理器映射器和適配器

spring3.1以前使用org.springframework.web.servlet.mvc.annotation.DefaultAnnotationHandlerMapping註解映射器。

spring3.1以後使用org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping註解映射器。

 spring3.1以前使用org.springframework.web.servlet.mvc.annotation.AnnotationMethodHandlerAdapter註解適配器。

 spring3.1以後使用org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter註解適配器。

1.配置註解映射器和適配器

<!-- 註解映射器 -->
    <bean class="org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping"/>
    <!-- 註解的適配器 -->
    <bean class="org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter"/>
    <!-- 使用 mvc:annotation-driven代替上邊註解映射器和註解適配器配置 mvc:annotation-driven默認加載不少的參數綁定方法, 好比json轉換解析器就默認加載了,若是使用mvc:annotation-driven不用配置上邊的RequestMappingHandlerMapping和RequestMappingHandlerAdapter 實際開發時使用mvc:annotation-driven -->
    <!-- <mvc:annotation-driven></mvc:annotation-driven> -->

2.開發註解handler(ItemsController03.java)

 1 package com.springmvc.controller;  2 
 3 import java.util.ArrayList;  4 import java.util.List;  5 
 6 import org.springframework.stereotype.Controller;  7 import org.springframework.web.bind.annotation.RequestMapping;  8 import org.springframework.web.servlet.ModelAndView;  9 
10 import com.springmvc.entity.Items; 11 
12 /**
13  * 14  * @author 阿赫瓦里 15  * @Description:註解開發Handler 16  * 17  */
18 // 使用Controller標識 它是一個控制器
19 @Controller 20 public class ItemsController03 { 21     // 商品查詢列表 22     // @RequestMapping實現 對queryItems方法和url進行映射,一個方法對應一個url 23     // 通常建議將url和方法寫成同樣
24     @RequestMapping("/queryItems") 25     public ModelAndView queryItems() throws Exception { 26         // 調用service查找 數據庫,查詢商品列表,這裏使用靜態數據模擬
27         List<Items> itemsList = new ArrayList<Items>(); 28         // 向list中填充靜態數據
29 
30         Items items_1 = new Items(); 31         items_1.setName("筆記本電腦"); 32  items_1.setPrice(6000f); 33         items_1.setDetail("聯想筆記本電腦"); 34 
35         Items items_2 = new Items(); 36         items_2.setName("蘋果手機"); 37  items_2.setPrice(5000f); 38         items_2.setDetail("iphone6手機!"); 39 
40  itemsList.add(items_1); 41  itemsList.add(items_2); 42         // 返回ModelAndView
43         ModelAndView modelAndView = new ModelAndView(); 44         // 至關 於request的setAttribut,在jsp頁面中經過itemsList取數據
45         modelAndView.addObject("itemsList", itemsList); 46 
47         // 指定視圖 48         // 下邊的路徑,若是在視圖解析器中配置jsp路徑的前綴和jsp路徑的後綴,修改成 49         // modelAndView.setViewName("/WEB-INF/jsp/items/itemsList.jsp"); 50         // 上邊的路徑配置能夠不在程序中指定jsp路徑的前綴和jsp路徑的後綴
51         modelAndView.setViewName("items/itemsList"); 52 
53         return modelAndView; 54  } 55 }

3.spring容器中加載Handler

1 <!-- 對於註解的Handler能夠單個配置 2  實際開發中建議使用組件掃描 3      -->
4     <!-- <bean class="com.springmvc.controller.ItemsController3" /> -->
5     <!-- 能夠掃描controller、service、... 6  這裏讓掃描controller,指定controller的包 7      -->
8     <context:component-scan base-package="com.springmvc.controller"></context:component-scan> 

四:springmvc.xml中的內容以及項目工程目錄

springmvc.xml中的所有內容:

 1 <beans xmlns="http://www.springframework.org/schema/beans"
 2     xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:mvc="http://www.springframework.org/schema/mvc"
 3     xmlns:context="http://www.springframework.org/schema/context"
 4     xmlns:aop="http://www.springframework.org/schema/aop" xmlns:tx="http://www.springframework.org/schema/tx"
 5     xsi:schemaLocation="http://www.springframework.org/schema/beans 
 6         http://www.springframework.org/schema/beans/spring-beans-3.2.xsd 
 7         http://www.springframework.org/schema/mvc 
 8         http://www.springframework.org/schema/mvc/spring-mvc-3.2.xsd 
 9         http://www.springframework.org/schema/context 
10         http://www.springframework.org/schema/context/spring-context-3.2.xsd 
11         http://www.springframework.org/schema/aop 
12         http://www.springframework.org/schema/aop/spring-aop-3.2.xsd 
13         http://www.springframework.org/schema/tx 
14         http://www.springframework.org/schema/tx/spring-tx-3.2.xsd ">
15 
16     <!-- 配置Handler -->
17     <bean id="itemsController1" name="/queryItems_test1.action" class="com.springmvc.controller.ItemsController01" />
18     <bean id="itemsController2" class="com.springmvc.controller.ItemsController02" />
19     <!-- 對於註解的Handler能夠單個配置
20     實際開發中建議使用組件掃描
21      -->
22     <!-- <bean class="com.springmvc.controller.ItemsController3" /> -->
23     <!-- 能夠掃描controller、service、...
24     這裏讓掃描controller,指定controller的包
25      -->
26     <context:component-scan base-package="com.springmvc.controller"></context:component-scan>
27     
28     
29     
30     <!-- 處理器映射器 -->
31     <!-- 根據bean的name進行查找Handler 將action的url配置在bean的name中 -->
32     <bean class="org.springframework.web.servlet.handler.BeanNameUrlHandlerMapping" />
33     
34     <!-- 處理器適配器 全部處理器適配器都實現 HandlerAdapter接口 -->
35     <bean class="org.springframework.web.servlet.mvc.SimpleControllerHandlerAdapter" />
36     <!-- 另外一個非註解的適配器 -->
37     <bean class="org.springframework.web.servlet.mvc.HttpRequestHandlerAdapter"/>
38     
39     <!-- 註解映射器 -->
40     <bean class="org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping"/>
41     <!-- 註解的適配器 -->
42     <bean class="org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter"/>
43     <!-- 使用 mvc:annotation-driven代替上邊註解映射器和註解適配器配置
44         mvc:annotation-driven默認加載不少的參數綁定方法,
45         好比json轉換解析器就默認加載了,若是使用mvc:annotation-driven不用配置上邊的RequestMappingHandlerMapping和RequestMappingHandlerAdapter
46         實際開發時使用mvc:annotation-driven
47      -->
48     <!-- <mvc:annotation-driven></mvc:annotation-driven> -->
49     
50     
51         <!--簡單url映射  -->
52     <bean class="org.springframework.web.servlet.handler.SimpleUrlHandlerMapping">
53         <property name="mappings">
54             <props>
55                 <!-- 對itemsController1進行url映射,url是/queryItems1.action -->
56                 <prop key="/queryItems1.action">itemsController1</prop>
57                 <prop key="/queryItems2.action">itemsController1</prop>
58                 <prop key="/queryItems3.action">itemsController2</prop>
59             </props>
60         </property>
61     </bean>
62     
63     <!-- 視圖解析器
64             解析jsp解析,默認使用jstl標籤,classpath下的得有jstl的包
65      -->
66     <bean
67         class="org.springframework.web.servlet.view.InternalResourceViewResolver">
68         <!-- 配置jsp路徑的前綴 -->
69         <property name="prefix" value="/WEB-INF/jsp/"/>
70         <!-- 配置jsp路徑的後綴 -->
71         <property name="suffix" value=".jsp"/>
72     </bean>
73 </beans>
View Code

項目工程目錄:

相關文章
相關標籤/搜索