从听说Struts2这个框架到现在已经将近很多年了,但是由于工作中没有用到Struts框架,所以导致本人对Struts2这个框架是学了又忘忘了又学,而且面试跳槽Struts2框架又是必不可少的内容,于是打算从Hello World开始记录Struts2的使用以来加深对Struts2框架的印象。
-
环境搭建
打开Eclipse新建动态的WEB工程,将Struts2 所需Jar包加入到lib文件夹下,并在Web.xml中配置Struts2的核心过滤器StrutsPrepareAndExecuteFilter,在src的目录下新建struts.xml文件。src中新建一个class命名为HelloWorldAction 并继承自ActionSupport类。项目搭建完毕后如下截图所示:
- 编写代码
在HelloAction中编写代码如下:
package com.imooc.chapter01;
import com.opensymphony.xwork2.ActionSupport;
public class HelloWorldAction extends ActionSupport {
/**
*
*/
private static final long serialVersionUID = -7962048394325449633L;
@Override
public String execute() throws Exception {
// TODO Auto-generated method stub
return SUCCESS;
}
}
在chapter01文件夹下文件index.jsp和success.jsp,其中index.jsp是项目访问的首页,success是index.jsp点击超链接跳转的成功页面。
index.jsp和success.jsp页面代码
<%@ page language="java" contentType="text/html; charset=UTF-8"
pageEncoding="UTF-8"%>
<!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>首页</title>
</head>
<body>
<a>welcome to Struts2</a>
<a href="${pageContext.request.contextPath}/helloWolrd.action">hello World</a>
</body>
</html>
<%@ page language="java" contentType="text/html; charset=UTF-8"
pageEncoding="UTF-8"%>
<!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>成功页面</title>
</head>
<body>
<a>welcome to learn how to use Struts2!</a>
</body>
</html>
项目首页和结果页开发完毕后,配置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="hello" namespace="/" extends="struts-default">
<action name="helloWolrd" class="com.imooc.chapter01.HelloWorldAction">
<result name="success">/chapter_01/success.jsp</result>
</action>
</package>
</struts>
至此,Struts2的hello world项目开发完毕,启用Tomcat。访问项目首页效果如下图所示:
点击超链接后:
关于Struts2的Hello World就记录这么多,后续继续记录。。。
点击查看更多内容
为 TA 点赞
评论
共同学习,写下你的评论
评论加载中...
作者其他优质文章
正在加载中
感谢您的支持,我会继续努力的~
扫码打赏,你说多少就多少
赞赏金额会直接到老师账户
支付方式
打开微信扫一扫,即可进行扫码打赏哦