Struts筆記2

来源:https://www.cnblogs.com/train99999/archive/2019/07/06/11144681.html
-Advertisement-
Play Games

Struts2 配置文件result元素 作用:為動作指定結果視圖 name屬性:邏輯視圖的名稱,對應著動作方法的返回值。預設值是success type屬性:結果類型,指的就是用什麼方式轉到定義的頁面,預設是dispatcher result中type的取值有四種類型 | | | | | : | ...


Struts2-配置文件result元素

作用:為動作指定結果視圖

name屬性:邏輯視圖的名稱,對應著動作方法的返回值。預設值是success

type屬性:結果類型,指的就是用什麼方式轉到定義的頁面,預設是dispatcher

result中type的取值有四種類型

dispatcher 預設值使用請求轉發,轉向一個頁面
redirect 使用重定向,轉向一個頁面
chain 轉發到另一個相同名稱空間的動作,轉發到不同名稱空間的動作
redirectAction 重定向到另一個相同名稱空間的動作,重定向到不同名稱空間的動作

result元素 轉發與重定向

dispatcher:是轉發到一個頁面(jsp)

chain:是轉發到一個action

redirect:重定向一個頁面

redirectAction:重定向到另一個action

img

img

自定義結果類型

上面的重定向,轉發都是結果類型

結果類型就是一個類,這些類都是些com.opensymphony.xwork2.Result介面,或者繼承自介面的實現類org.apache.struts2.dispatcher.StrutsResultSupport

這些類都有一個doExecute方法,用於執行結果視圖,struts的內部實現就是Servlet

自定義驗證碼結果類型

package com.gyf.web.result;

import javax.servlet.http.HttpServletResponse;

import org.apache.struts2.ServletActionContext;
import org.apache.struts2.dispatcher.StrutsResultSupport;

import com.opensymphony.xwork2.ActionInvocation;

import cn.dsna.util.images.ValidateCode;

public class CAPTCHAResult extends StrutsResultSupport{
    private int width;
    private int height;
    @Override
    protected void doExecute(String arg0, ActionInvocation arg1) throws Exception {
        //生成驗證碼
        //創建一個驗證碼對象
        ValidateCode code = new ValidateCode(width,height,4,6);
        //獲取response對象,因為要返回給客戶端
        HttpServletResponse response = ServletActionContext.getResponse();
        code.write(response.getOutputStream());//write方法可以把圖片寫回給客戶端,但是需要一個輸出流
    }
    public int getHeight() {
        return height;
    }
    public int getWidth() {
        return width;
    }
    public void setWidth(int width) {
        this.width = width;
    }
    public void setHeight(int height) {
        this.height = height;
    }
    
    
}
<?xml version="1.0" encoding="UTF-8" ?>
<!DOCTYPE struts PUBLIC
    "-//Apache Software Foundation//DTD Struts Configuration 2.3//EN"
    "http://struts.apache.org/dtds/struts-2.3.dtd">

<struts>
    <!-- 配置開發模式 -->
   <constant name="struts.devMode" value="true"></constant>
   
   
   <package name="p1" extends="struts-default" namespace="/n1">     
        <!--聲明一個結果類型  -->
        <result-types>
            <result-type  name="captcha" class="com.gyf.web.result.CAPTCHAResult"></result-type>
        </result-types> 
        <!--配置action -->
        <action name="checkcode">
            <result type="captcha">
                <param name="width">150</param>
                <param name="height">60</param>
             </result>
        </action>
   </package>
</struts>

result元素-全局視圖和局部視圖

img

img

Struts2-動作類中的servlet api 訪問講解

第一種方式

package com.gyf.web.action;

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

import org.apache.struts2.ServletActionContext;

import com.opensymphony.xwork2.ActionSupport;

public class TestAction extends ActionSupport{
    public String test() {
        //獲取servlet 的api方式
        //第一種方式:通過ServletActionContext
        //response
        HttpServletResponse response = ServletActionContext.getResponse();
        //request
        HttpServletRequest request = ServletActionContext.getRequest();
        //session
        HttpSession session = request.getSession();
        //application[ServletContext]
        ServletContext application = ServletActionContext.getServletContext();
        
        
        System.out.println(request);
        System.out.println(response);
        System.out.println(session);
        System.out.println(application);
        
        
        //NONE相當於不用跳轉頁面,也就是相當於不用找result標簽,
        return NONE;
    }
}

第二種方式

package com.gyf.web.action;

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

import org.apache.struts2.ServletActionContext;
import org.apache.struts2.interceptor.ServletRequestAware;
import org.apache.struts2.interceptor.ServletResponseAware;
import org.apache.struts2.util.ServletContextAware;

import com.opensymphony.xwork2.ActionSupport;

public class TestAction2 extends ActionSupport implements ServletRequestAware,ServletResponseAware,ServletContextAware{
    HttpServletResponse response;
    HttpServletRequest request;
    ServletContext application;
    public String test() {
        //第二種方式,通過實現介面,讓Struts自動註入
        System.out.println(request);
        System.out.println(response);
        System.out.println(application);
        
        
        //NONE相當於不用跳轉頁面,也就是相當於不用找result標簽,
        return NONE;
    }
    @Override
    public void setServletResponse(HttpServletResponse response) {
        this.response=response;
        
    }
    @Override
    public void setServletRequest(HttpServletRequest request) {
        this.request=request;
        
    }
    @Override
    public void setServletContext(ServletContext application) {
        this.application=application;
        
    }
}

Action接收請求參數

通過Servlet和Action的屬性set方法註入獲取參數

package com.gyf.web.action;

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

import org.apache.struts2.ServletActionContext;

import com.opensymphony.xwork2.ActionSupport;

public class LoginAction extends ActionSupport{
    //第二種方式通過屬性的set註入
    private String username;
    private String password;
    
    public String login() {
        //第一種方式:通過ServletActionContext
        //request
//      HttpServletRequest request = ServletActionContext.getRequest();
//      String username = request.getParameter("username");
//      String password = request.getParameter("password");
        
        System.out.println(username);
        System.out.println(password);
        //NONE相當於不用跳轉頁面,也就是相當於不用找result標簽,
        return NONE;
    }
    
    public String getUsername() {
        return username;
    }

    public void setUsername(String username) {
        this.username = username;
    }

    public String getPassword() {
        return password;
    }

    public void setPassword(String password) {
        this.password = password;
    }

    
}

第三種方式通過Action的屬性的set模型的形式註入

第四種方式通過模型驅動在action里實現一個模型驅動介面

實現步驟:

在action里實現一個模型驅動介面

提供一個模型屬性,並一定要賦值

實現原理:是因為有個模型驅動的攔截器在處理,ModelDrivenIngetrceptor,處理過程中給User賦予值

package com.gyf.web.model;

public class User {
    private String username;
    private String password;
    public String getUsername() {
        return username;
    }
    public void setUsername(String username) {
        this.username = username;
    }
    public String getPassword() {
        return password;
    }
    public void setPassword(String password) {
        this.password = password;
    }
    @Override
    public String toString() {
        return "User [username=" + username + ", password=" + password + "]";
    }
    
}
<%@ page language="java" contentType="text/html; charset=UTF-8"
    pageEncoding="UTF-8"%>
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<title>Insert title here</title>
</head>
<body>
<!-- 第四種方式 -->
<form action="${pageContext.request.contextPath}/login.action">
    用戶名<input type="text" name="username"><br>
    密碼<input type="password" name="password"><br>
    <input type="submit" name="登錄">
</form>

<!-- 第三種方式 -->
<!-- 
    <form action="${pageContext.request.contextPath}/login.action">
    用戶名<input type="text" name="user.username"><br>
    密碼<input type="password" name="user.password"><br>
    <input type="submit" name="登錄">
</form>
 -->
</body>
</html>
package com.gyf.web.action;

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

import org.apache.struts2.ServletActionContext;

import com.gyf.web.model.User;
import com.opensymphony.xwork2.ActionSupport;
import com.opensymphony.xwork2.ModelDriven;

public class LoginAction extends ActionSupport implements ModelDriven<User>{

    public String login() {
        
        System.out.println(user);
        
        return NONE;    
    }   
    private User user = new User();
    @Override
    public User getModel() {
        
        return user;
    }
    
}

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

-Advertisement-
Play Games
更多相關文章
  • 一、新增 1、使用save() 2、使用createCommand 原生sql 3、使用createCommand insert 4、批量插入 二、刪除 1、使用delete() 2、使用deleteAll()批量刪除 3、使用createCommand delete() 4、使用createCom ...
  • 相似基因 題目 【題目描述】 大家都知道,基因可以看作一個鹼基對序列。它包含了4種核苷酸,簡記作A,C,G,T。生物學家正致力於尋找人類基因的功能,以利用於診斷疾病和發明藥物。 在一個人類基因工作組的任務中,生物學家研究的是:兩個基因的相似程度。因為這個研究對疾病的治療有著非同尋常的作用。 兩個基因 ...
  • 1、BeanFactory 介紹 1.1 首先什麼是Bean? 1、Bean在Spring技術中是基於組件 2、他是Spring容器管理的最基本最常見的單元。在spring的應用場合中,bean可以是數據源、java的普通類 3、其實例保存在Spring的容器中,這種方式也是spring的核心思想所 ...
  • 1、Spring主要用到兩種設計模式 1.1 工廠模式 Spring容器就是實例化和管理全部Bean的工廠。 工廠模式可以將Java對象的調用者從被調用者的實現邏輯中分離出來。 調用者只關心被調用者必須滿足的某種規則,這裡的規則我們可以看做是介面,而不必關心實例的具體實現過程,具體實現由Bean工廠 ...
  • float為什麼比int表示的範圍廣? 什麼是單精度和雙精度? float表示小數的時候為什麼會有精度丟失? 帶著這幾個問題,我們來探究下java中float類型在電腦的表示形式。 java中int占用4個位元組,float也是占用4個位元組,但是為什麼float表示的範圍要比int大呢,因為兩者在計 ...
  • emmm,沒有啥前言 玩過SpringBoot的都知道,SpringBoot啟動的時候,預設會在控制台列印SpringBoot字樣和當前版本。 可是腦洞奇大的程式員怎麼可能就這麼拘泥於正常banner呢? 怎麼騷怎麼來是吧~ 具體說明用法,我就不一一舉例了,網上有很多設置banner的方案。 我一般 ...
  • 電腦網路基礎 1. 什麼是互聯網協議 一系列統一的標準,這些標準稱之為互聯網協議,互聯網的本質就是一系列的協議,總稱為‘互聯網協議’(Internet Protocol Suite)。 互聯網協議的功能:定義電腦如何接入internet,以及接入internet的電腦通信的標準。 2. osi ...
  • 1.查詢多條數據 1.1靜態調用all方法或者select方法 1.2動態調用all方法或者select方法 註:all方法或者select方法返回的是一個包含模型對象的二維數組或者空數組select方法和All方法的應用:[obj, obj] 2.查詢一條數據 2.1靜態調用get方法或者find ...
一周排行
    -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.數據驗證 在伺服器端進行嚴格的數據驗證,確保接收到的數據符合預期格 ...