structs2的action实现方式

Posted 笨笨莱鸟学编程

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了structs2的action实现方式相关的知识,希望对你有一定的参考价值。

Action的实现方式
第一种:
在web.xml中添加配置
<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>

在structs.xml中添加配置
<struts>
<!--extends必须写,直接或者间接继承struts-default name自定义 -->
<package name="hello" extends="struts-default">
<!-- name是请求名称,不要写/;class对应action完全限定名=包名+类名 -->
<action name="hello" class="cn.sxt.action.HelloAction">
<!-- result是结果集 name和对应action中的方法的返回值匹配,默认是success -->
<result name="success">/index.jsp</result>
</action>
</package>
</struts>

action实现类
package cn.sxt.action;

public class HelloAction {
public HelloAction() {
System.out.println("constructor");
}
public String execute(){
System.out.println("hello struts2");
return "success";
}
}
第二种实现方法 实现接口action
package cn.sxt.action;

import com.opensymphony.xwork2.Action;

public class InterfaceAction implements Action{

public String execute() throws Exception {
// TODO Auto-generated method stub
System.out.println("interface action");
return SUCCESS;
}
}
第三种实现方法 继承ActionSupport
package cn.sxt.action;

import com.opensymphony.xwork2.ActionSupport;

public class ExtendsAction extends ActionSupport{

/**
*
*/
private static final long serialVersionUID = 1L;

}

以上是关于structs2的action实现方式的主要内容,如果未能解决你的问题,请参考以下文章

Structs2 structs.xml配置

Struct2_定义拦截器并使用注解方式作用在Action的方法中

ssh整合思想初步 structs2 Spring Hibernate三大框架各自要点

structs2

二十Spring MVC与Structs2的区别总结

struct2_拦截器知识点.