這篇文章給大家分享的是有關(guān)SpringMVC框架如何實現(xiàn)Handler處理器的內(nèi)容。小編覺得挺實用的,因此分享給大家做個參考,一起跟隨小編過來看看吧。
讓客戶滿意是我們工作的目標,不斷超越客戶的期望值來自于我們對這個行業(yè)的熱愛。我們立志把好的技術(shù)通過有效、簡單的方式提供給客戶,將通過不懈努力成為客戶在信息化領(lǐng)域值得信任、有價值的長期合作伙伴,公司提供的服務(wù)項目有:域名注冊、網(wǎng)絡(luò)空間、營銷軟件、網(wǎng)站建設(shè)、博愛網(wǎng)站維護、網(wǎng)站推廣。
一、SpringMVC中的處理器
配置完SpringMVC的處理器映射器,處理適配器,視圖解析器后,需要手動寫處理器。關(guān)于處理器的寫法有三種,無論怎么寫,執(zhí)行流程都是①處理映射器通過@Controller注解找到處理器,繼而②通過@RequestMapping注解找到用戶輸入的url。下面分別介紹這三種方式。
package com.gql.springmvc; import java.io.IOException; import javax.servlet.ServletException; import javax.servlet.http.HttpServletRequest; import javax.servlet.http.HttpServletResponse; import org.springframework.stereotype.Controller; import org.springframework.ui.Model; import org.springframework.web.bind.annotation.RequestMapping; import org.springframework.web.servlet.ModelAndView; /** * 類說明: * 處理器的三種寫法 * @guoqianliang1998. */ @Controller public class UserController { //1.SpringMVC開發(fā)方式 @RequestMapping("/hello") public ModelAndView hello(){ ModelAndView mv = new ModelAndView(); mv.addObject("msg","hello world!"); mv.setViewName("index.jsp"); return mv; } //2.原生Servlet開發(fā)方式 @RequestMapping("xx") public void xx(HttpServletRequest request,HttpServletResponse response) throws ServletException, IOException{ request.setAttribute("msg", "周冬雨"); request.getRequestDispatcher("/index.jsp").forward(request, response); } //3.開發(fā)中常用 @RequestMapping("yy") public String yy(Model model){ model.addAttribute("msg", "雙笙"); return "forward:/index.jsp";//forward寫不寫都是轉(zhuǎn)發(fā),redirect代表重定向. } }
1.SpringMVC開發(fā)方式
@RequestMapping("/hello") public ModelAndView hello(){ ModelAndView mv = new ModelAndView(); mv.addObject("msg","hello world!"); mv.setViewName("index.jsp"); return mv; }
2.Servlet原生開發(fā)方式
@RequestMapping("xx") public void xx(HttpServletRequest request,HttpServletResponse response) throws ServletException, IOException{ request.setAttribute("msg", "周冬雨"); request.getRequestDispatcher("/index.jsp").forward(request, response); }
3.開發(fā)中常用的方式
在return的字符串中,forward寫不寫都是代表轉(zhuǎn)發(fā),redirect則代表重定向。
@RequestMapping("yy") public String yy(Model model){ model.addAttribute("msg", "雙笙"); return "forward:/index.jsp"; }
感謝各位的閱讀!關(guān)于“SpringMVC框架如何實現(xiàn)Handler處理器”這篇文章就分享到這里了,希望以上內(nèi)容可以對大家有一定的幫助,讓大家可以學(xué)到更多知識,如果覺得文章不錯,可以把它分享出去讓更多的人看到吧!