<rt id="bn8ez"></rt>
<label id="bn8ez"></label>

  • <span id="bn8ez"></span>

    <label id="bn8ez"><meter id="bn8ez"></meter></label>

    隨筆 - 2  文章 - 2  trackbacks - 0
    <2015年3月>
    22232425262728
    1234567
    891011121314
    15161718192021
    22232425262728
    2930311234

    留言簿

    隨筆檔案(1)

    文章分類(16)

    最新隨筆

    搜索

    •  

    最新評論

    一、概述

    SpringMVC在2.5版本后新增了注解功能,2.5版本以前的基本通過繼承Controller體系來開發業務控制器,2.5版本后Controller體系中
    BaseCommandController及其子類AbstractCommandController、AbstractFormController、AbstractWizardFormController、
    SimpleFormController、CancellableFormController等都已經被標示為@Deprecated,建議不再使用。

    相比傳統的繼承Controller體系中某些類的方式,SpringMVC的注解具有以下優點:
    1、Controller不再需要繼承某個特定類,只是簡單的POJO。
    2、請求映射的配置非常方便靈活。
    3、參數綁定機制非常方便豐富。
    4、可以根據不同的http方法或者參數,細粒度處理不同的http請求

    二、示例

    下面通過對SpringMVC注解的詳細介紹來看一下上述優點。

    首先需要在應用的dispatcher-servlet.xml 啟動注解機制
    <context:annotation-config />
    <!-- 設置注解驅動 -->
    <mvc:annotation-driven />
     
    <!-- 設置掃描的包 -->
    <context:component-scan base-package="com.demo.web.controller" />
    <bean class="org.springframework.web.servlet.mvc.annotation.DefaultAnnotationHandlerMapping" />
    <bean class="org.springframework.web.servlet.mvc.annotation.AnnotationMethodHandlerAdapter" />

    注:雖然我們的Controller不需要再繼承任何類,但出于規范,我們仍然命名為***Controller.java,并統一放在com.demo.web.controller包中。

    1、@Controller注解

    簡單示例
    package com.demo.controller;

    import org.springframework.stereotype.Controller;
    import org.springframework.web.bind.annotation.RequestMapping;

    @Controller
    class IndexController {
        @RequestMapping(
    "/index")
        String index() {
            
    return "index";
        }
    }

    在一個POJO上面使用 @Controller 就可以標注該POJO是一個Controller,就這么簡單。 @Controller注解定義在org.springframework.steretype包中。
    使用方式: @Controller 或者 @Controller("indexController)。 org.springframework.steretype包中還包含 @Componenet @Service @Respository
    三個注解。@Component是通用標注,@Controller標注web控制器,@Service標注Servicec層的服務,@Respository標注DAO層的數據訪問。

    2、使用@RequestMapping注解處理請求映射

        SpringMVC中注解基本都包含在 org.springframework.web.bind.annotation 包中。先看一下@RequestMapping 注解的源碼。
    @Target( { ElementType.METHOD, ElementType.TYPE })
    @Retention(RetentionPolicy.RUNTIME)
    @Documented
    @Mapping
    public @interface RequestMapping {

        
    /**
         * 指定映射的URL.可以在類層次和方法層次使用。方式如下:
         * @RequestMapping("/add_")或 @RequestMapping(value = "/add")
         * 支持Ant風格的URL映射,如 @RequestMapping("/myPath/*.htm")
         * 在類層次指定了映射后,可以在方法層次再指定相對路徑
         
    */
        String[] value() 
    default {};

        
    /**
         * 指定HttpRequest的方法, 如:GET, POST, HEAD, OPTIONS, PUT, DELETE, TRACE.
         * 使用舉例: @RequestMapping(value = "/add_activity", method = RequestMethod.GET)
         
    */
        RequestMethod[] method() 
    default {};

        
    /**
         * 指定HttpRequest中包含的參數,使用方式如下:
         * @RequestMapping(value = "/something",params="myParam") 請求包含myParam參數
         * @RequestMapping(value = "/something",params="myParam=myValue")請求包含myParam參數,并且該參數值為myValue
         * @RequestMapping(value = "/something",params="!myParam") 請求不包含myParam參數
         
    */
        String[] params() 
    default {};

        
    /**
         * 指定HttpRequest中包含的頭部信息,使用方式如下:
         * @RequestMapping(value = "/something", headers="content-type")請求包含該頭部
         * @RequestMapping(value = "/something", headers="content-type=text/*")請求包含特定值的頭部
         * @RequestMapping(value = "/something", headers="!content-type")請求不包含該頭部
         
    */
        String[] headers() 
    default {};

    }
    注:如果在類層次指定了映射,則方法層次上都將繼承類層次的映射

    3、獲取HttpRequest中得參數

    @RequestMapping("active")
    public @ResponseBody boolean active(Long accountId) {
        return accountService.activeAccount(accountId);
    }

    @RequestMapping("active")
    public @ResponseBody boolean active(Account account) {
        return accountService.activeAccount(accountId);
    }
    @RequestMapping(
    "inactive")
    public @ResponseBody boolean inactive(@RequestParam("accountId") Long accountId,
                @RequestHeader(
    "User-Agent") String userAgent,
                @CookieValue(
    "loginId") String loginId) {
        
    return accountService.inactiveAccount(accountId);
    }

    @RequestMapping(value 
    = "list/{pageNo}", method = RequestMethod.GET)
    public String list(@PathVariable int pageNo) {
         
    return "/account/list";
    }

    @RequestMapping(value = "add", method = RequestMethod.GET)
    public String add(@RequestBody String body) {
         return "/account/add";
    }


    active方法的入參 accountId,如果請求中有名為 accountId的參數,則會進行默認綁定,不僅基本類型,javabean的屬性也可以默認進行綁定;
    如果需要明確綁定,使用@RequestParam。 一般建議進行明確指定。

    3.1 @RequestParam 綁定httpRequest中參數,@RequestParam("accountId") 完整形式為  @RequestParam(value="accountId",required=true,defaultValue=null)
    3.2 @RequestHeader 綁定httpRequest頭部信息,@RequestHeader("User-Agent") 完整形式為 @RequestHeader(value="User-Agebt",required=true, defaultValue=null)
    3.3 @CookieValue 綁定一個Cookie值,@CookieValue("loginId") 完整形式為 @CookieValue(value="loginId",required=true,defaultValue=null)
    3.4 @RequestBody 將httpRequest的body綁定到方法參數上
    3.5 @ModelAttribute 有兩種使用方式: 1)在方法級別,指定方法的返回值綁定到model中; 2)方法參數級別,指定model中的值綁定到方法的入參上 示例如下:
     @ModelAttribute("countryList")
        
    public List<String> getCountries() {
            
    return new ArrayList<String>();
        }

    @RequestMapping(value 
    = "search", method = RequestMethod.POST)
        
    public String searchAccount(@ModelAttribute("accountId") Long accountId) {
            
    return "/search";
        }

    4、使用@ResponseBody 生成response

        適用于webservice的數據交換,或ajax異步請求,text、json或者xml格式的數據交換。
        例如訪問: http://localhost:8080/accounts/info.htm
     

    @RequestMapping(value = "info")
    public @ResponseBody Account getAccount() {
            Account a 
    = new Account();
            a.setId(
    123L);
            a.setName(
    "zhangsan");
            
    return a;
     }

    返回數據如下:
    {"name":"zhangsan","id":123}
    從上面例子可以看出,使用@ResponseBody后,返回的javabean默認被序列化成json格式的數據并被寫入到response body中。

    @Request 和 @ReponseBody 使用了HttpMessageConverter機制。下面是HttpMessageConverter的繼承體系。


    常用的有如下幾個:
    StringHttpMessageConverter ---字符串
    MappingJacksonHttpMessageConverter ----json
    ByteArrayHttpMessageConverter ----字節數組
    MarshallingHttpMessageConverter -----xml

    5、使用模板技術生成response

        適用于一般頁面請求。可以使用velocity freemarker等模板技術,在dispatcher-servlet.xml中需要設置viewResolver。
       

    @RequestMapping("/index")
    public String index(ModelMap modelMap) {
            modelMap.put(
    "name""liucs");
            
    return "index";
    }

    @RequestMapping(
    "/index")
    public String index2(Model model) {
            model.addAttribute(
    "name","liucs");
            
    return "index";
    }

    @RequestMapping("/index")
    public ModelAndView index3() throws Exception {
          ModelAndView mav = new ModelAndView("index");
          mav.addObject("name", "liucs");
          return mav;
    }

    如上面代碼index1和index2所示,不使用@ResponseBody注解。 返回一個String類型,這個String是viewname, 如果是重定向,return "redirect:/index.htm".
    入參可以包含ModelMap或者Model,其實這兩者是一個東西,作用一樣。也可以采用index3式的傳統寫法,返回一個ModelAndView對象。

    6、數據驗證

    @InitBinder標注
    @InitBinder
        
    public void myInitBinder(WebDataBinder binder){
          binder.setDisallowedFields(
    new String[]{"id"});
        }
    通過在方法中聲明一個BindingResult參數來啟動綁定和驗證
    @RequestMapping("update")
        
    public void update(@ModelAttribute("account") Account account,BindingResult bindResult) {
            
    if(bindResult.hasErrors()){
                
    //……
            }
        }
    需要注意以下限制:
    1、BindingResult參數必須跟在一個JavaBean參數后面
    2、錯誤會被自動的綁定到model中,便于渲染模板時使用
    3、不支持@RequestBody等類型的參數形式

    7、異常處理

    @ExceptionHandler


    posted on 2011-09-05 16:42 liucs 閱讀(8510) 評論(2)  編輯  收藏 所屬分類: Spring框架學習

    FeedBack:
    # re: 基于注解的SpringMVC 2014-08-10 11:23 zuidaima
    # re: 基于注解的SpringMVC 2015-03-09 13:50 zuidaima
    spring mvc demo教程源代碼下載:http://zuidaima.com/share/kspringmvc-p1-s1.htm  回復  更多評論
      

    只有注冊用戶登錄后才能發表評論。


    網站導航:
     
    主站蜘蛛池模板: 亚洲老熟女五十路老熟女bbw| 亚洲av永久无码精品秋霞电影影院 | sss日本免费完整版在线观看| 韩国欧洲一级毛片免费| 亚洲av乱码中文一区二区三区| 免费黄色一级毛片| 亚洲人成网站在线播放2019| 啦啦啦中文在线观看电视剧免费版 | 综合亚洲伊人午夜网| 免费看少妇高潮成人片| 亚洲avav天堂av在线不卡| 日韩内射激情视频在线播放免费| 久久久婷婷五月亚洲97号色| 波多野结衣中文字幕免费视频| 亚洲中文字幕无码中文字| 国产精品色午夜免费视频| 一级人做人a爰免费视频| 日本亚洲成高清一区二区三区| 男人的天堂网免费网站| 亚洲校园春色小说| 日韩精品视频免费观看| 免费看一级高潮毛片| 亚洲av永久无码精品网站| 精品女同一区二区三区免费站| 亚洲乱妇熟女爽到高潮的片| 亚洲av再在线观看| 免费人成在线观看视频高潮| 亚洲国产高清视频在线观看| 免费观看四虎精品国产永久| 久久免费动漫品精老司机| 亚洲精品免费网站| 国产美女亚洲精品久久久综合| 亚洲美女免费视频| 无码免费又爽又高潮喷水的视频| 亚洲不卡av不卡一区二区| 99久久综合国产精品免费| 一个人看的在线免费视频| 亚洲网站在线播放| 亚洲爽爽一区二区三区| 无码国产精品一区二区免费 | 一本大道一卡二大卡三卡免费 |