Struts2继承ActionSupport流程

今天这个是来讲述Struts2继承ActionSupport,其中有以下几步
1.是最简单也是必不可少的一步了
在这里插入图片描述
2.这个继承的 需要做两个JSP,一个需要用来作为登录界面,一个用来显示。

<%@ page language="java" contentType="text/html; charset=utf-8"  
    pageEncoding="utf-8"%> 
<%@ taglib prefix="s" uri="/struts-tags"%> 
<html>  
<head>  
<meta http-equiv="Content-Type" content="text/html; utf-8">  
<title>Insert title here</title>  
<style type="text/css">
ul,li {
    list-style-type:none;
    margin:0px;
    float:left;
}
</style>
</head>  
<body>  
   
<form action="helloworldAction" method="post"> 
    <input type="hidden" name="submitFlag" value="login"/>  
    <div> 
        <font color=red><s:fielderror fieldName="account"/></font>
        <br/>
          账号:<input type="text" name="account">
    </div>
    <div>
        <font color=red><s:fielderror fieldName="password"/></font>
        <br/>
            密码:<input type="password" name="password">
    </div>
    <input type="submit" value="提交">  
</form>  
  
</body>  
</html> 
<%@ 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>My JSP 'welcome.jsp' starting page</title>
  
  </head>
  
  <body>
    登录成功 <br>
  </body>
</html>

这是两个JSP完成了
3.新建一个类以及配置文件
在这里插入图片描述
以下为代码可以参考

package com.hipn.show;

import com.opensymphony.xwork2.ActionSupport;

public class HelloWorldAction extends ActionSupport {
	 private String account;  
	    private String password;  
	    private String submitFlag;  
	    public String execute() throws Exception {  
	        this.businessExecute();  
	        return "toWelcome";  
	    }  
	    public void validate(){  
	        if(account==null || account.trim().length()==0){  
	            this.addFieldError("account", "账号不可以为空");  
	        }  
	        if(password==null || password.trim().length()==0){  
	            this.addFieldError("password", "密码不可以为空");  
	        }
	        if(password!=null && !"".equals(password.trim()) && password.trim().length()<6){  
	            this.addFieldError("password", "密码长度至少为6位");  
	        }  
	    }  
	    /** 
	     * 示例方法,表示可以执行业务逻辑处理的方法, 
	     */  
	    public void businessExecute(){  
	        System.out.println("用户输入的参数为==="+"account="+account+",password="+password+",submitFlag="+submitFlag);  
	    }
	    public String getAccount() {
	        return account;
	    }
	    public void setAccount(String account) {
	        this.account = account;
	    }
	    public String getPassword() {
	        return password;
	    }
	    public void setPassword(String password) {
	        this.password = password;
	    }
	    public String getSubmitFlag() {
	        return submitFlag;
	    }
	    public void setSubmitFlag(String submitFlag) {
	        this.submitFlag = submitFlag;
	    }  
	    
	}  

下面是配置文件

<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE struts PUBLIC  
    "-//Apache Software Foundation//DTD Struts Configuration 2.0//EN"  
    "http://struts.apache.org/dtds/struts-2.0.dtd">  
 <struts>  
<package name="helloworld"  extends="struts-default">  
        <action name="helloworldAction" class="com.hipn.show.HelloWorldAction">  
            <result name="toWelcome">/welcome.jsp</result> 
             <result name="input">/index.jsp</result>   
        </action>  
    </package>  
</struts>

这个需要注意的是在Class的地方那个路径要和你上面那个类的路径一致,还有action name这里要和上面JSP页面那里也要一致。
4.配置一个过滤器当然jar也不要忘了加进去
在这里插入图片描述

<?xml version="1.0" encoding="UTF-8"?>
<web-app version="2.5" 
	xmlns="http://java.sun.com/xml/ns/javaee" 
	xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" 
	xsi:schemaLocation="http://java.sun.com/xml/ns/javaee 
	http://java.sun.com/xml/ns/javaee/web-app_2_5.xsd">
  <welcome-file-list>
    <welcome-file>index.jsp</welcome-file>
  </welcome-file-list>
  
  <filter>
  <filter-name>struts2</filter-name>
  <filter-class>org.apache.struts2.dispatcher.ng.filter.StrutsPrepareAndExecuteFilter</filter-class>
  </filter>
  <filter-mapping>
  <filter-name>struts2</filter-name>
  <url-pattern>/*</url-pattern>
  </filter-mapping>
</web-app>

下面为显示效果
在这里插入图片描述
这样一个Struts2继承ActionSupport流程就完成了,有什么不完整的地方,欢迎各路大神提出来。

猜你喜欢

转载自blog.csdn.net/BlickPi/article/details/83616405