struts

運行流程

客戶端瀏覽器經過HTTP請求,訪問控制器,而後控制器讀取配置文件,而後執行服務器端跳轉,執行相應的業務邏輯,而後,在調用模型層,取得的結果展現給jsp頁面,最後返回給客戶端瀏覽器html

組成部分 struts
視圖 標籤庫
控制器 action
模型層 ActionFrom JavaBean

struts

maven 安裝 官網 : struts.apache.org/java

  1. idea新建web項目
  2. 接着以下依賴 網址 search.maven.org/artifact/st…
<dependencies>
    <dependency>
      <groupId>org.apache.struts</groupId>
      <artifactId>struts2-core</artifactId>
      <version>2.5.20</version>
    </dependency>
    <dependency>
      <groupId>commons-logging</groupId>
      <artifactId>commons-logging</artifactId>
      <version>1.2</version>
    </dependency>
    <dependency>
      <groupId>junit</groupId>
      <artifactId>junit</artifactId>
      <version>4.11</version>
      <scope>test</scope>
    </dependency>
  </dependencies>
複製代碼

此時將會自動處理好依賴web

一直採用的是直接打包好war包的方式的spring

編寫配置文件

<!DOCTYPE web-app PUBLIC
 "-//Sun Microsystems, Inc.//DTD Web Application 2.3//EN"
 "http://java.sun.com/dtd/web-app_2_3.dtd" >

<web-app>
  <display-name>Archetype Created Web Application</display-name>
  <filter>
    <filter-name>struts2</filter-name>
    <filter-class>
      org.apache.struts2.dispatcher.filter.StrutsPrepareAndExecuteFilter
    </filter-class>
  </filter>
  <filter-mapping>
    <filter-name>struts2</filter-name>
    <url-pattern>/*</url-pattern>
  </filter-mapping>
</web-app>

複製代碼

建立攔截器,攔截全部請求.交給struts控制器執行apache

編寫struts控制文件

<?xml version="1.0" encoding="UTF-8"?>

<!DOCTYPE struts PUBLIC
        "-//Apache Software Foundation//DTD Struts Configuration 2.5//EN"
        "http://struts.apache.org/dtds/struts-2.5.dtd">

<struts>
 
</struts>
複製代碼

此時

此時項目目錄結構以下 瀏覽器

2019-03-23-18-11-04----

建立action類,控制器類

建立控制器類,完成頁面的信息的傳遞bash

package com.ming;

public class HelloWorldAction {
    private String name;

    public String execute() throws Exception {
        return "success";
    }

    public String getName() {
        return name;
    }

    public void setName(String name) {
        this.name = name;
    }
}

複製代碼

此時,定義私有String類型的name,定義set,get方法,當執行的時候,調用execute方法.服務器

此爲控制器,起到鏈接二者的視圖層,和模型層之間的關係.app

建立視圖層

定義頁面提交視圖層

<%@ page language="java" contentType="text/html; charset=ISO-8859-1"
         pageEncoding="ISO-8859-1"%>
<%@ taglib prefix="s" uri="/struts-tags"%>
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"
"http://www.w3.org/TR/html4/loose.dtd">
<html>
<head>
    <title>Hello World</title>
</head>
<body>
<h1>Hello World From Struts2</h1>
<form action="hello">
    <input type="text" name="name"/>
    <input type="submit" value="提交"/>
</form>
</body>
</html>
複製代碼

此時,定義表單.提交內容,將會發送到hello控制裏jsp

定義數據接收層

<%@ page contentType="text/html; charset=UTF-8" %>
<%@ taglib prefix="s" uri="/struts-tags" %>
<html>
<head>
    <title>Hello World</title>
</head>
<body>
Hello World, <s:property value="name"/>
</body>
</html>
複製代碼

再次編寫配置文件

再次編寫配置文件,二者聯合起來

<?xml version="1.0" encoding="UTF-8"?>

<!DOCTYPE struts PUBLIC
        "-//Apache Software Foundation//DTD Struts Configuration 2.5//EN"
        "http://struts.apache.org/dtds/struts-2.5.dtd">

<struts>
    <!-- 定義調試 -->
    <constant name="struts.devMode" value="true" />
    <!-- 定義數據包 -->
    <package name="helloworld" extends="struts-default">
        <!-- 定義處理邏輯 name爲指定處理的名稱 class 處理的包文件 method 處理將會調用的方法-->
        <action name="hello"
                class="com.ming.HelloWorldAction"
                method="execute">
            <!-- 成功返回頁面 -->
            <result name="success">/HelloWorld.jsp</result>
        </action>
    </package>
</struts>
複製代碼

運行效果

2019-03-23-18-18-45----

2019-03-23-18-18-53----

最後

目前 jsp已經基本廢棄 因此標籤庫已經基本沒人用了. struts起的做用,更多的是控制器的做用,請求送給spring

相關文章
相關標籤/搜索