Struts2基本框架搭建

1.首先需要登录Apache官网下载和安装Struts2框架
网址:https://struts.apache.org/download.cgi 里边有多个版本,推荐下载:Full Distribution版本。
2.将下载的压缩文件解压,然后再将解压后的Apps中的struts2-blank.war继续解压
然后在路径:apps\struts2-blank\WEB-INF\lib中有13个压缩文件
3.搭载Struts环境
示例:
Struts2基本框架搭建_第1张图片

       (2)在src根目录下新建struts.xml文件,然后将:struts-2.3.31-all\struts-2.3.31\apps\struts2-blank\WEB-INF\src\java路径下的struts.xml文件内容粘到新建的Struts.xml中

示例:



<struts>
    <package name="default" namespace="/" extends="struts-default">
        <action name="login" class="com.iotek.action.LoginAction">
            <result name="error">/WEB-INF/content/error.jspresult>
         <result name="success">/WEBINF/content/welcome.jspresult>     
        action>
    package>
struts>
    (3)d)在web.xml中添加struts2的过滤器
    示例:

<web-app xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://xmlns.jcp.org/xml/ns/javaee" xsi:schemaLocation="http://xmlns.jcp.org/xml/ns/javaee http://xmlns.jcp.org/xml/ns/javaee/web-app_3_1.xsd" id="WebApp_ID" version="3.1">
  <display-name>StrutsKetangdisplay-name>
  <welcome-file-list>
    <welcome-file>index.htmlwelcome-file>
    <welcome-file>index.htmwelcome-file>
    <welcome-file>index.jspwelcome-file>
    <welcome-file>default.htmlwelcome-file>
    <welcome-file>default.htmwelcome-file>
    <welcome-file>default.jspwelcome-file>
  welcome-file-list>
  //以下为添加的过滤器部分
  <filter>
<filter-name>struts2filter-name>
<filter-class>org.apache.struts2.dispatcher.ng.filter.StrutsPrepareAndExecuteFilterfilter-class>
filter>
<filter-mapping>
<filter-name>struts2filter-name>
<url-pattern>/*url-pattern>
filter-mapping>
web-app>

4.最后完成页面和action的编写
为了避免其他人员知道其他页面路径后跳过过滤器,直接访问页面,所有一般将其他页面放在WEB-INF/content中(若没有content文件夹,自己创建一个)
index.jsp代码示例:

<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<title>Insert title heretitle>
head>
<body>
<form action="login">//这里的login就是struts.xml中定义的action的name
    姓名:<input type="text" name="name"><br>
   密码:<input type="password" name="password"><br>
   <input type="submit" name="submit" value="提交">
   <input type="reset" value="取消">
form>
body>
html>

LoginAction.java代码示例:

package com.iotek.action;

public class LoginAction {
    private String name;
    private String password;
    public String getName() {
        return name;
    }
    public void setName(String name) {
        this.name = name;
    }
    public String getPassword() {
        return password;
    }
    public void setPassword(String password) {
        this.password = password;
    }
    public String execute(){
        if(getName().equals("xiaoming")&&getPassword().equals("123456")){
            System.out.println("登录成功");
            return "success";
        }else{
            return "error"; 
        }

    }

}

welcome.jsp或error.jsp代码示例:

<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<title>Insert title heretitle>
head>
<body>
${name }
${password }
<p>登录成功p>
body>
html>

你可能感兴趣的:(Struts)