struts2 之 Action的创建方式
Posted forever_2h
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了struts2 之 Action的创建方式相关的知识,希望对你有一定的参考价值。
总结:struts2是一个轻量级框架,提供了无侵入性的实现方式,struts2也提供了接口和类来实现action。通过实现接口或者继承类来实现action可以实现struts2提供的相关功能,
1. 通过Action接口来实现action:
优点:限制了处理类必须有execute方法。在配置action中可以减少相关配置
public class Hello1Action implements Action{ public String execute() throws Exception { System.out.println("通过实现Action接口来实现处理类"); return this.SUCCESS; } }
2. 通过继承 struts2提供的ActionSupport类来实现处理类。这种方式可以使用到struts2提供的相关功能:验证,国际化。
public class Hello2Action extends ActionSupport{ public String hello(){ System.out.println("hello 处理类"); return this.SUCCESS; } }
3.第三种实现处理类的方式就是无侵入性的实现。这种实现比较轻量级。
public class Hello3Action{ public String hello(){ System.out.println("hello 处理类"); return Action.SUCCESS; } }
以上是关于struts2 之 Action的创建方式的主要内容,如果未能解决你的问题,请参考以下文章
struts2学习笔记之六:struts2的Action访问ServletAPI的几种方式