基於Maven 的 Spring MVC

来源:https://www.cnblogs.com/zhangze-lifetime/archive/2019/11/06/11807260.html
-Advertisement-
Play Games

Spring MVC 他是基於MVC的設計模式做出來的,他是Spring對Servlet的進一步的封裝 MVC:Model View Controller 如何使用Spring MVC?(Spring 和 Spring MVC整合) a. pom.xml 導入 SpringMVC.jar <!-- ...


Spring MVC

他是基於MVC的設計模式做出來的,他是Spring對Servlet的進一步的封裝
  MVC:Model  View  Controller

如何使用Spring MVC?(Spring 和 Spring MVC整合)
    a. pom.xml 導入 SpringMVC.jar

 

<!-- Spring 5 與SpringMVC -->
    <dependency>
        <groupId>org.springframework</groupId>
        <artifactId>spring-webmvc</artifactId>
         <version>${spring.version}</version>
    </dependency>

 

 


    b. 配置(xml 標註):AppConfig類
        @Configurable
        @EnableWebMvc
        @ComponentScan({"day"})

package day;

import org.springframework.context.annotation.Bean;
import org.springframework.context.annotation.ComponentScan;
import org.springframework.context.annotation.Configuration;
import org.springframework.web.servlet.config.annotation.EnableWebMvc;
import org.springframework.web.servlet.view.JstlView;
import org.springframework.web.servlet.view.UrlBasedViewResolver;

/**
 * 基於註解的配置類(JavaConfig配置)
 * @author 張澤
 */

@Configuration
@EnableWebMvc
@ComponentScan({"day"})
public class AppConfig {
    /**
     * jsp的解析器
     * 這個Bean的作用就是告訴Spring MVC 你寫的JSP文件的位置
     * @return
     */
    @Bean 
    public UrlBasedViewResolver setupViewResolver() {
        UrlBasedViewResolver resolver = new UrlBasedViewResolver();
        resolver.setPrefix("/WEB-INF/");//-- 位置 受保護的,不可以直接訪問
        resolver.setSuffix(".jsp"); //-- jsp文件的尾碼,你在寫頁面的時候就省略掉尾碼
        resolver.setViewClass(JstlView.class);
        return resolver;
    }
}
/**
    換句話說:我們要先配置好那個Servlet,並且在伺服器啟動的時候把它實例化
    (1)tomcat啟動的時候,SpringMVC框架寫了監聽器ContextListener(ServletContextListener)
    (2)在ServletContextListener中實例化這個核心的Servlet
    (3)這個Serlet攔截一切請求
    (4)攔截請求後,在獲取請求的路徑轉發給對應的Controller
    (5)Controller再進行相應的請求的處理
    
想法:所有的Bean要納入到Spring容器來管理,才能實現面向介面的編程
Tomcat 啟動後,會不會有Spring容器。
當Tomcat啟動的時候,我們實例化一個Spring容器。然後把它放到ServletContext
SpringMVC:
    (1)在Tomcat啟動的時候,實例化一個Spring容器放入到ServletContext對象里
    (2)並且在ServletContext中實例化那個核心的Servlet
    (3)而且該Servlet攔截一切請求
    
*/

 

 

      
        WebInitializer類:web容器啟動得時候會調用該類得onStartup方法初始化工作:Spring容器與SpringMVC框架

 

package day;

import javax.servlet.ServletContext;
import javax.servlet.ServletException;
import javax.servlet.ServletRegistration;

import org.springframework.web.WebApplicationInitializer;
import org.springframework.web.context.support.AnnotationConfigWebApplicationContext;
import org.springframework.web.servlet.DispatcherServlet;

/**
 * Tomcat 啟動的時候會檢測是否有WebApplicationInitializer介面的類
 * 若檢測到有這個類,就會實例化它,並調用他的onStartup方法
 * @author 張澤
 */
public class WebInitializer implements WebApplicationInitializer {

    @Override
    public void onStartup(ServletContext servletContext) 
            throws ServletException {
        System.out.println("startup invoker the method");
        
        //--  1. 構造Spring容器
        AnnotationConfigWebApplicationContext ctx = 
                new AnnotationConfigWebApplicationContext();
        //-- 2. Spring容器載入配置
        ctx.register(AppConfig.class);
        //-- 3. Spring容器接管servletContext應用上下文對象
        ctx.setServletContext(servletContext);
        //-- 4. 添加Servlet(至少添加一個Servlet,SpringMVC框架實現的入口Servlet)
        ServletRegistration.Dynamic servlet = 
                servletContext.addServlet("dispatcher",new DispatcherServlet(ctx));
        servlet.addMapping("/");
        servlet.setLoadOnStartup(1);
    }
//-- 你想使用Spring,就得有Spring容器得實例,
//-- 你想使用SpringMVC就得配置DispatcherServlet得實例,
//-- 還要把這兩個東西放到ServletContext 對象里,為什麼呢?
//-- 因為他們兩個都是重量級對象
}

 

 

 
     調用類

 

package day;

import java.io.IOException;
import java.io.PrintWriter;
import java.util.ArrayList;
import java.util.List;

import javax.servlet.http.HttpServletRequest;
import javax.servlet.http.HttpServletResponse;

import org.springframework.stereotype.Controller;
import org.springframework.web.bind.annotation.RequestMapping;
import org.springframework.web.bind.annotation.ResponseBody;
import org.springframework.web.servlet.ModelAndView;

import com.alibaba.fastjson.JSON;

import day.entity.User;

@Controller
public class HelloController {
    @RequestMapping("/hello")
    public void hello() {
        System.out.println("hello");
    }
    
    @RequestMapping("/hi")
    public void hi() {
        System.out.println("hi");
    }
    
    @RequestMapping("/index")  //-- 代表映射路徑
    public String index(HttpServletRequest request,    HttpServletResponse response) {   //-- 方法名
        String name = request.getParameter("name");
        System.out.println(name);
        try {
            PrintWriter out = response.getWriter();
            out.write("adsfasdfasdf"+name);
            out.close();
        } catch (IOException e) {
            e.printStackTrace();
        }
        
        return "index";//-- 頁面得名字
    }
    /**
     * 返回字元串
     * @return
     */
    @RequestMapping("/data")
    @ResponseBody
    public String aaa() {
        List<User> users = new ArrayList<User>();
        users.add(new User("zz",15));
        users.add(new User("zz",15));
        users.add(new User("zz",15));
        //-- 2. 用alibaba得fastJson工具
        String jsonStr = JSON.toJSONString(users);
        return jsonStr;
        //return "[{'name':zz,'age':15}]";
    }
    /**
     * 返回得是頁面,並且可以給頁面傳遞數據
     * @return 
     */
    @RequestMapping("/test")
    public ModelAndView bbb(HttpServletRequest request,HttpServletResponse response) {
        
        ModelAndView mv = new ModelAndView("test");
        //-- do something query data
        mv.addObject("message", "寶塔鎮河妖");
        return mv;
        
        //底層:
//        request.setAttribute("message", "hello");
//        try {
//            request.getRequestDispatcher("/WEB-INF/test.jsp").forward(request, response);
//        } catch (ServletException e) {
//            // TODO Auto-generated catch block
//            e.printStackTrace();
//        } catch (IOException e) {
//            // TODO Auto-generated catch block
//            e.printStackTrace();
//        }
    }
}

 

 


        
其他小知識點:

之前的訪問連接:URL: http://localhost:8080/hello?name=xxx&word=122
    RestFul形式介面:
        http://localhost:8080/hello/name/zhangsan/password/123456
    
    實現:hello/zhangsan/123456    
    @RequestMapping("/hello/{name}/{password}")
    public String getUser(
        @pathVariable("name") String name,
        @pathVariable("password") String password){}
 
    

Get與Post請求:

  方法一:
      @RequestMapping(value="",method=RequestMethod.GET)

    @RequestMapping(value="",method=RequestMethod.Post)
    方法二:
      Get請求:@GetMapping("")   相等於: @RequestMapping(value="",method=RequestMethod.GET)
      Post請求:@PostMappping("")


您的分享是我們最大的動力!

-Advertisement-
Play Games
更多相關文章
  • 1、除了預設的8080埠以外,我們嘗試應用9090埠進行功能變數名稱訪問,打開server.xml 如圖: 2、在代碼裡面進行添加如下9090下麵的代碼: 如圖: 3、用9090埠進行訪問 如圖: 4、配置gzip,同樣在server.xml文件中進行設置,添加代碼 如圖: ...
  • 前言 這是我個人 面試系列 的第二篇文章,在第一篇文章中我主要分享了一下我之前面試大廠的部分面試題,很高興得到了許多前端小伙伴兒的支持和點贊。平心而論,我的學歷和背景並不是很突出,只能算普通,但幸運的是還是有機會接收到某些大廠( 比如攜程、嗶哩嗶哩、流利說、喜馬拉雅等 )的面試邀請,當然也不排除公司 ...
  • jQuery的DOM操作模塊封裝了DOM模型的insertBefore()、appendChild()、removeChild()、cloneNode()、replaceChild()等原生方法。分為5個子模塊來實現:插入元素、刪除元素、複製元素、替換元素和包裹元素,本節講解第一個子模塊:插入元素 ...
  • <el-date-picker v-model="firstdate" :picker-options="pickerOptions0" type="daterange" range-separator="至" start-placeholder="開始時間" end-placeholder="結束 ...
  • 解決方案; picker和Select組件是通過input標簽綁定,可以先通過input的父級元素移除input標簽,重新插入input標簽,最後重新初始化picker或Select組件。 <div class="weui-cell"> <div class="weui-cell__hd"><lab ...
  • 場景 Ubuntu Server 16.04 LTS上怎樣安裝下載安裝Nginx並啟動: https://blog.csdn.net/BADAO_LIUMANG_QIZHI/article/details/102828075 Nginx的配置文件位置以及組成部分結構講解: https://blog. ...
  • 添加依賴 <dependency> <groupId>io.netty</groupId> <artifactId>netty-all</artifactId> <version>4.1.2.Final</version> </dependency> <dependency> <groupId>or ...
  • 一、final關鍵字 1.註意點: (1)final是一個關鍵字,表示最終的,不可變的。 (2)final修飾的類無法被繼承 (3)final修飾的方法無法被覆蓋 (4)final修飾的變數一旦被賦值之後,不可以被重新賦值 (5)final修飾的實例變數 (6)final修飾的引用 package ...
一周排行
    -Advertisement-
    Play Games
  • 移動開發(一):使用.NET MAUI開發第一個安卓APP 對於工作多年的C#程式員來說,近來想嘗試開發一款安卓APP,考慮了很久最終選擇使用.NET MAUI這個微軟官方的框架來嘗試體驗開發安卓APP,畢竟是使用Visual Studio開發工具,使用起來也比較的順手,結合微軟官方的教程進行了安卓 ...
  • 前言 QuestPDF 是一個開源 .NET 庫,用於生成 PDF 文檔。使用了C# Fluent API方式可簡化開發、減少錯誤並提高工作效率。利用它可以輕鬆生成 PDF 報告、發票、導出文件等。 項目介紹 QuestPDF 是一個革命性的開源 .NET 庫,它徹底改變了我們生成 PDF 文檔的方 ...
  • 項目地址 項目後端地址: https://github.com/ZyPLJ/ZYTteeHole 項目前端頁面地址: ZyPLJ/TreeHoleVue (github.com) https://github.com/ZyPLJ/TreeHoleVue 目前項目測試訪問地址: http://tree ...
  • 話不多說,直接開乾 一.下載 1.官方鏈接下載: https://www.microsoft.com/zh-cn/sql-server/sql-server-downloads 2.在下載目錄中找到下麵這個小的安裝包 SQL2022-SSEI-Dev.exe,運行開始下載SQL server; 二. ...
  • 前言 隨著物聯網(IoT)技術的迅猛發展,MQTT(消息隊列遙測傳輸)協議憑藉其輕量級和高效性,已成為眾多物聯網應用的首選通信標準。 MQTTnet 作為一個高性能的 .NET 開源庫,為 .NET 平臺上的 MQTT 客戶端與伺服器開發提供了強大的支持。 本文將全面介紹 MQTTnet 的核心功能 ...
  • Serilog支持多種接收器用於日誌存儲,增強器用於添加屬性,LogContext管理動態屬性,支持多種輸出格式包括純文本、JSON及ExpressionTemplate。還提供了自定義格式化選項,適用於不同需求。 ...
  • 目錄簡介獲取 HTML 文檔解析 HTML 文檔測試參考文章 簡介 動態內容網站使用 JavaScript 腳本動態檢索和渲染數據,爬取信息時需要模擬瀏覽器行為,否則獲取到的源碼基本是空的。 本文使用的爬取步驟如下: 使用 Selenium 獲取渲染後的 HTML 文檔 使用 HtmlAgility ...
  • 1.前言 什麼是熱更新 游戲或者軟體更新時,無需重新下載客戶端進行安裝,而是在應用程式啟動的情況下,在內部進行資源或者代碼更新 Unity目前常用熱更新解決方案 HybridCLR,Xlua,ILRuntime等 Unity目前常用資源管理解決方案 AssetBundles,Addressable, ...
  • 本文章主要是在C# ASP.NET Core Web API框架實現向手機發送驗證碼簡訊功能。這裡我選擇是一個互億無線簡訊驗證碼平臺,其實像阿裡雲,騰訊雲上面也可以。 首先我們先去 互億無線 https://www.ihuyi.com/api/sms.html 去註冊一個賬號 註冊完成賬號後,它會送 ...
  • 通過以下方式可以高效,並保證數據同步的可靠性 1.API設計 使用RESTful設計,確保API端點明確,並使用適當的HTTP方法(如POST用於創建,PUT用於更新)。 設計清晰的請求和響應模型,以確保客戶端能夠理解預期格式。 2.數據驗證 在伺服器端進行嚴格的數據驗證,確保接收到的數據符合預期格 ...