关于Struts2.5.13的使用问题

新手入门,记录下在使用Struts时遇到的问题,以防忘记。以下内容以登录功能为例。

代码内容为转载,主要是记录下自己遇到的问题,转载请见谅。

1.首先要下载Struts2.5.13需要用的包,网上许多地方可以下载,就不赘言。下载完后,将其中的如下所示的包直接复制到自己的工程中的WEB-INF/lib中
  
2.在src新建LoginAction类,内容如下
package com.ssh.action;
import com.opensymphony.xwork2.ActionContext;  
import com.opensymphony.xwork2.ActionSupport;  
  
public class LoginAction extends ActionSupport  
{  
    //定义封装请求参数的username和password属性  
    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;  
    }  
    //定义处理用户请求的execute方法  
    public String execute() throws Exception  
    {  
        //当username为crazyit.org,password为leegang时即登录成功  
        if (getUsername().equals("crazyit.org")  
            && getPassword().equals("leegang") )  
        {  
            ActionContext.getContext().getSession()  
                .put("user" , getUsername());  
        return SUCCESS;  
        }  
        else  
        {  
            return ERROR;  
        }  
    }  
}  
此处要注意自己将该类放置的包路径,因为接下来的struts.xml配置文件中需要用到,如果错了,会出现如

Unable to load configuration

这样的错误,本人在此处纠结了很久

3.在src目录下创建struts.xml文件,文件内容如下
<?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>  
   <package name="action" extends="struts-default">  
        <action name="login" class="com.ssh.action.LoginAction">  <!-- 注意此处的类路径,坑 -->
            <!-- 定义三个逻辑视图和物理资源之间的映射 -->         
            <result name="input">/login.jsp</result>  
            <result name="error">/error.jsp</result>  
            <result name="success">/welcome.jsp</result>  
        </action>  
    </package>  
</struts>  

4.接着定义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" xsi:schemaLocation="http://java.sun.com/xml/ns/javaee http://java.sun.com/xml/ns/javaee/web-app_3_0.xsd" id="WebApp_ID" version="3.0">  
  <display-name>Struts2</display-name>  
 <!-- 添加Struts2的过滤器,对于不同版本的Struts,filter-class可能不同-->
<filter>
<filter-name>struts-prepare</filter-name>
<filter-class>org.apache.struts2.dispatcher.filter.StrutsPrepareFilter</filter-class>
</filter>
<filter>
<filter-name>struts-execute</filter-name>
<filter-class>org.apache.struts2.dispatcher.filter.StrutsExecuteFilter</filter-class>
</filter>
<filter-mapping>
<filter-name>struts-prepare</filter-name>
<url-pattern>/*</url-pattern>
</filter-mapping>
<filter-mapping>
<filter-name>struts-execute</filter-name>
<url-pattern>/*</url-pattern>
</filter-mapping>
  
  <welcome-file-list>  
    <welcome-file>index.html</welcome-file>  
    <welcome-file>index.htm</welcome-file>  
    <welcome-file>index.jsp</welcome-file>  
    <welcome-file>default.html</welcome-file>  
    <welcome-file>default.htm</welcome-file>  
    <welcome-file>default.jsp</welcome-file>  
  </welcome-file-list>  
</web-app>  

5.最后是三个jsp页面文件
login.jsp
<%@ page language="java" contentType="text/html; charset=UTF-8"  
    pageEncoding="UTF-8"%>  
<%@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>  
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">  
<title><s:text name="loginPage"/></title>  
</head>  
<body>  
<s:form action="login">  
    <s:textfield name="username" key="user"/>  
    <s:textfield name="password" key="pass"/>  
    <s:submit key="login"/>  
</s:form>  
</body>  
</html>  

error.jsp
<%@ page language="java" contentType="text/html; charset=GBK"  
    pageEncoding="GBK"%>  
<%@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><s:text name="errorPage"/></title>  
    <meta http-equiv="Content-Type" content="text/html; charset=GBK">  
</head>  
<body>  
    <s:text name="failTip"/>  
</body>  
</html>  

welcome.jsp
<%@ page language="java" contentType="text/html; charset=GBK"  
    pageEncoding="GBK"%>  
<%@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><s:text name="succPage"/></title>  
<meta http-equiv="Content-Type" content="text/html; charset=GBK">  
</head>  
<body>  
    <s:text name="succTip">  
        <s:param>${sessionScope.user}</s:param>  
    </s:text><br/>  
</body>  
</html>  

注意细节,按照上述流程将工程内容配置好,Struts框架就可以跑起来。
评论 1
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值