SpringMVC的註解開發入門

来源:http://www.cnblogs.com/zhangzongle/archive/2016/11/21/6087138.html
-Advertisement-
Play Games

1.Spring MVC框架簡介 支持REST風格的URL 添加更多註解,可完全註解驅動 引入HTTP輸入輸出轉換器(HttpMessageConverter) 和數據轉換、格式化、驗證框架無縫集成 對靜態資源處理提供特殊支持 更加靈活的控制器方法簽名,可完全獨立於Servlet API 2.Spr ...


1.Spring MVC框架簡介

  • 支持REST風格的URL
  • 添加更多註解,可完全註解驅動
  • 引入HTTP輸入輸出轉換器(HttpMessageConverter)
  • 和數據轉換、格式化、驗證框架無縫集成
  • 對靜態資源處理提供特殊支持
  • 更加靈活的控制器方法簽名,可完全獨立於Servlet API

 

2.Spring MVC框架結構,執行流程

Spring MVC 3框架的預設實現者

 

3.如何在應用中使用Spring-MVC?

  1. 在應用中添加Spring框架支持;
  2. 在web.xml中配置Spring-MVC的請求轉發器(前端控制器)
  3. 編寫Spring-MVC的配置文件
  4. 將任意JavaBean通過註解配置成Controller(控制器)並註解其中的方法
  5. 完成

4.今天我們先來瞭解一下我們註解開發的小例子(簡單登錄)

   一:轉發(forward)

 

源碼介紹:

1.lib包(jar包)和 web.xml文件的配置

<?xml version="1.0" encoding="UTF-8"?>
<web-app xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://java.sun.com/xml/ns/javaee" xmlns:web="http://java.sun.com/xml/ns/javaee/web-app_2_5.xsd" xsi:schemaLocation="http://java.sun.com/xml/ns/javaee http://java.sun.com/xml/ns/javaee/web-app_2_5.xsd" version="2.5">
  <display-name></display-name>
  <servlet>
    <servlet-name>springmvc</servlet-name>
    <servlet-class>org.springframework.web.servlet.DispatcherServlet</servlet-class>
    <init-param>
      <param-name>contextConfigLocation</param-name>
      <param-value>classpath:applicationContext.xml</param-value>
    </init-param>
    <load-on-startup>1</load-on-startup>
  </servlet>
  <servlet-mapping>
    <servlet-name>springmvc</servlet-name>
    <url-pattern>*.do</url-pattern>
  </servlet-mapping>
  <welcome-file-list>
  <welcome-file>index.jsp</welcome-file>
  </welcome-file-list>
</web-app>
View Code

2.index.jsp(登錄主頁)

<%@ page language="java" import="java.util.*" pageEncoding="utf-8"%>
<%
    String path = request.getContextPath();
    String basePath = request.getScheme() + "://"
            + request.getServerName() + ":" + request.getServerPort()
            + path + "/";
%>

<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
<html>
<head>
<base href="<%=basePath%>">

<title>登錄主頁</title>
</head>
<body>
    <form action="frist.do" method="post">
        用戶名:<input type="text" name="name" /> 年齡:<input type="text"
            name="age" /> <input type="submit" value="提交" />
    </form>

</body>
</html>
View Code

3.hello.jsp(登錄成功後跳到的頁面)和 error.jsp(登錄失敗跳到的頁面)

<%@ page language="java" import="java.util.*" pageEncoding="utf-8"%>
<%
String path = request.getContextPath();
String basePath = request.getScheme()+"://"+request.getServerName()+":"+request.getServerPort()+path+"/";
%>

<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
<html>
  <head>
    <base href="<%=basePath%>">
    <title>成功歡迎頁面</title>
  </head>
  <body>
  歡迎您<br/>
    姓名:${name}<br/>
    年齡:${age }
  </body>
</html>
View Code
<%@ page language="java" import="java.util.*" pageEncoding="UTF-8"%>
<%
    String path = request.getContextPath();
    String basePath = request.getScheme() + "://"
            + request.getServerName() + ":" + request.getServerPort()
            + path + "/";
%>

<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
<html>
<head>
<base href="<%=basePath%>">
<title>錯誤頁面</title>
</head>
<body>這是錯誤頁面
</body>
</html>
View Code

4.MyController.java(定義自己的處理器)

package cn.zhang.controller;

import org.springframework.stereotype.Controller;
import org.springframework.ui.Model;
import org.springframework.web.bind.annotation.RequestMapping;
import org.springframework.web.bind.annotation.RequestMethod;

//定義自己的處理器

@Controller
public class MyController{
    @RequestMapping(value="/frist.do",produces="text/html;charset=utf-8",method=RequestMethod.POST)
    public String frist(Model model,String name,int age){
        model.addAttribute("name", name);
        model.addAttribute("age", age);
        System.out.println(name);
        System.out.println(age);
        return "forward:/hello.jsp";
    }
}
View Code

5.applicationContext.xml(Spring的配置文件)

<?xml version="1.0" encoding="UTF-8"?>
<beans xmlns="http://www.springframework.org/schema/beans"
    xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" 
    xmlns:context="http://www.springframework.org/schema/context"
    xmlns:mvc="http://www.springframework.org/schema/mvc"
    xsi:schemaLocation="
        http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans.xsd
        http://www.springframework.org/schema/context http://www.springframework.org/schema/context/spring-context.xsd
        http://www.springframework.org/schema/mvc http://www.springframework.org/schema/mvc/spring-mvc.xsd">
    
    <!-- 使用註解方式完成映射 -->
    <context:component-scan base-package="cn.zhang.controller"></context:component-scan>
    <!-- mvc的註解驅動 -->
    <mvc:annotation-driven/>
    
</beans>
View Code

 效果展示:

1.輸入成功的情況

點擊提交跳到成功頁面:

 

如果輸入其他的信息則會跳到錯誤頁面:

 

   二:重定向(redirect)

我們只要改我們的控制器就行了

package cn.zhang.controller;

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

//定義自己的處理器

@Controller
public class MyController{
   
    @RequestMapping(value="/frist.do")//登錄請求的是frist.do
    public String frist(Model model,String name,int age){

        return "redirect:hello.do";//重定向到hello.do
    }
    
    @RequestMapping(value="/hello.do")
    public String hello(Model model,String name,int age){
        model.addAttribute("name", name);
        model.addAttribute("age", age);
        System.out.println(name);
        System.out.println(age);
        if (name.equals("1")&&age==1) {
            return "redirect:/hello.jsp";//重定向到hello.jsp
        }else {
            return "redirect:/error.jsp";//重定向到error.jsp
        }
        
    }
}
View Code

 


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

-Advertisement-
Play Games
更多相關文章
  • PHP_VERSION_ID是一個整數,表示當前PHP的版本,從php5.2.7版本開始使用的,比如50207表示5.2.7。和PHP版本相關的巨集定義在文件 phpsrcdir/main/php_version.h里,如下 // 文件位置: phpsrc/main/php_version.h /* ...
  • 1,理解控制反轉 以前一直說著這個詞,然後把它等於上ioc這個詞,再等於上代碼里一個bean里依賴了其他bean,不用new,用註解,用xml去描述,就可以了。能用就行了,實際理論的不管也不影響編碼,其實能用了內心也是理解是怎麼回事的,知識理論上說不好而已。 我覺得只要理解一個事情就好了,ioc所謂 ...
  • 貪吃蛇游戲截圖: 首先安裝pygame,可以使用pip安裝pygame: pip install pygame 運行以下代碼即可: 操作方法: 上下左右鍵或wsad鍵控制 ESC鍵退出游戲 下載代碼:http://files.cnblogs.com/files/qiu2013/snake.zip 游 ...
  • **晚上在公司的論壇上看到一道面試題,題目如下:隨機給定一字元串和字元,要求重排,比如:’abde’,’c’。重排之後變成’abcde’ **看到他們給的答案很多都是二分法重排,既然是字元類的處理,當然可以用ASCII碼表對應的數字來處理了,所以在這裡簡單的寫一種方法出來,代碼如下: **測試步驟: ...
  • 1 描述 在J2EE項目的開發中,不管是對底層的資料庫操作過程,還是業務層的處理過程,還是控制層的處理過程,都不可避免會遇到各種可預知的、不可預知的異常需要處理。每個過程都單獨處理異常,系統的代碼耦合度高,工作量大且不好統一,維護的工作量也很大。 那麼,能不能將所有類型的異常處理從各處理過程解耦出來 ...
  • 跟女朋友聊天的時候,女朋友抱怨每次翻譯都要打開百度網頁上找,這讓我有了做一個小的翻譯界面的想法,搜索百度翻譯居然發現其有API,正合我意,上百度翻譯開放平臺註冊一個個人測試帳號就可以了,東拼西湊,做出了來一個小程式,代碼如下: 測試運行結果還行,截圖如下: ...
  • Eclipse反編譯工具Jad及插件下載路徑 http://download.csdn.net/detail/lijun7788/9689312 http://files.cnblogs.com/files/hahaman/DeComiler.rar ...
  • 卸載所有安裝的 PHP: sudo apt-get purge `dpkg -l | grep php| awk '{print $2}' |tr "\n" " "` 添加源: sudo add-apt-repository ppa:ondrej/php 安裝php5.6: sudo apt-get ...
一周排行
    -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.數據驗證 在伺服器端進行嚴格的數據驗證,確保接收到的數據符合預期格 ...