struts2以webwork优秀的设计思想为核心,吸收了 struts框架的部分优点,提供了一个更加整洁的mvc设计模式实现的web 应用程序框架。 struts2引入了几个新的框架特性:从逻辑中分离出横切关注点的拦截器、减少或者消除配置文件、贯穿整个框架的强大表达式语言、支持可变更和可重用的基于mvc模式的标签api, struts2充分利用了从其它mvc框架学到的经验和教训,使得 struts2框架更加清晰灵活。
今天写一篇struts2框架的,在很久很久以前,struts2可谓是称霸江湖,纵然现在有后起之秀,但struts2依然可以成为老牌的主流框架,充当servlet,而且现在很多的招聘需求依然要求你会用struts2,并且有的面试官会问你它和springmvc的区别,今天先把代码展示出来,对应的理论知识在初探—续编里面在详细表述。
目录结构:
helloworld.java
1
2
3
4
5
6
7
8
9
10
|
package action;
import com.opensymphony.xwork2.actionsupport;
public class helloworld extends actionsupport{
@override
public string execute() throws exception {
// todo auto-generated method stub
system.out.println( "执行action" );
return success;
}
}
|
struts.xml 配置文件
1
2
3
4
5
6
7
8
9
10
11
|
<?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= "default" extends = "struts-default" >
<action name= "helloworld" class = "action.helloworld" >
<result name= "success" >/index.jsp</result>
</action>
</ package >
</struts>
|
web.xml
1
2
3
4
5
6
7
8
9
10
11
|
<?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= "default" extends = "struts-default" >
<action name= "helloworld" class = "action.helloworld" >
<result name= "success" >/index.jsp</result>
</action>
</ package >
</struts>
|
jsp 展示页
以上就是本次关于struts2框架基础知识点的全部内容,希望能够给你提供到帮助。
原文链接:http://www.cnblogs.com/shandouji1121/p/7868931.html