Struts2配置和简单实例
详细的步骤
1:新建一个WEB项目,名为HelloWorld ,在eclipse中建一个普通的WEB项目。保证项目能够运行。
添加相关的jar包
2:把需要的jar包从struts2的lib目录复制到WEB-INF/lib文件夹下,最基础的需要8个jar包:
commons-fileupload-1.3.3.jar、commons-io-2.5.jar、commons-lang3-3.6.jar、freemarker-2.3.26.jar、
log4j-api-2.9.1.jar、ognl-3.1.15.jar、struts2-core-2.5.14.1.jar、javassist-3.20.0-GA.jar
注意:struts2.5之前的版本有点不同,还需要xwork-core.jar,不需要log4j-api-2.7.jar。原因是struts2.5把xwork的源码合并到了struts-core中。struts2.5之前使用logging API,而struts2.5用log4j 2 API取代。
图3 需要的jar包
3:在web.xml中配置struts2框架的核心控制器StrutsPrepareAndExexuteFilter
图4 web.xml的配置
Filter的完整类名struts2.5以前是 org.apache.struts2.dispatcher.ng.filter.StrutsPrepareAndExecuteFilter。
4:在src目录下新建一个业务控制Action类,继承自com.opensymphony.xwork2.ActionSupport,内容如下:
图5 新建一个Action
Action需要在Struts2的核心配置文件中进行配置
Struts2的核心配置文件为struts.xml,放在src目录下。
图6 struts.xml内容
注意struts.xml的放置位置。
5:新建一个result.jsp文件,用来action显示返回的视图
图7 result.jsp的内容
6:最后运行HelloWorld项目,在浏览器访问http://localhost:8080/HelloWorld/helloworld
最后展现的内容应该是result.jsp的内容。
控制台输出Action的打印内容
到这里,struts2就算配置完成了。
涉及的代码
web.xml
<!-- 配置核心拦截器 -->
<filter>
<!-- Filter的名字 -->
<filter-name>struts2</filter-name>
<!-- Filter的实现类 struts2.5以前可能有所不同 -->
<filter-class>org.apache.struts2.dispatcher.filter.StrutsPrepareAndExecuteFilter</filter-class>
</filter>
<filter-mapping>
<filter-name>struts2</filter-name>
<!-- 拦截所有的url -->
<url-pattern>/*</url-pattern>
</filter-mapping>
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="default" namespace="/" extends="struts-default">
<!-- name action的名字,访问时使用helloworld.action访问,class:实现类 -->
<action name="helloworld" class="cn.xhcoding.action.HelloWorldAction">
<!-- 结果集,即action中SUCCESS返回的视图 -->
<result>
/result.jsp
</result>
</action>
</package>
</struts>
HelloWorldAction.java
public class HelloWorldAction extends com.opensymphony.xwork2.ActionSupport{
@Override
public String execute() throws Exception {
System.out.println("正在执行的Action");
// 返回视图 SUCCESS,这是框架定义
return SUCCESS;
}
}
result.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>Action Result</title>
</head>
<body>
<h1>恭喜成功配置好基本的struts2环境</h1>
<h2>Hello World, I am Successful</h2>
</body>
</html>
转自博客:https://blog.csdn.net/xh_acmagic/article/details/52700870