学习Struts2_0300

Action 用法
我们先配置一下 struts.xml 文件

<constant name="struts.devMode" value="true" />
    <package name="default" namespace="/" extends="struts-default">
        <action name="hello" class="com.struts2.front.IndexAction1">
            <result name="success">
                /index.jsp
            </result>
        </action>
    </package>

当访问到action中时 会调用com.struts2.front.IndexAction1类的execute方法 action中的class 可以不配置。 会调用默认的execute.
struts1和struts2 的区别就是 action 在struts1中 会生成一个类。 而在struts2中 会每次调用action方法都会生成一个 不会造成线程同步的问题
我们在看一下IndexAction。

package com.struts2.front;

public class IndexAction1 {
    public String execute(){
        return "success";       
    }
}
package com.struts2.front;

import com.opensymphony.xwork2.Action;

public class IndexAction2 implements Action{

    @Override
    public String execute() throws Exception {
        // TODO Auto-generated method stub
        return "success";
    }

}
package com.struts2.front;

import com.opensymphony.xwork2.ActionSupport;


public class IndexAction3 extends ActionSupport{
    @Override
    public String execute(){
        return "success";
    }

}

在开发的时候我们会调用第三种方法 因为ActionSupport中 已经为我们封装了一些方法。 不需要我们自己重新写

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值