Eclipse怎样配置struts2
Eclipse和Tomcat的安装不再细说了,注意看一下Struts2项目的配置:
1、创建动态web项目
在Eclipse中选择File-New-Dynamic Web Project创建动态项目:
按下图创建名称为Struts2HelooWorld的项目,在Target runtime中选择Apache Tomcat v6.0并按提示选择Tomcat的安装根目录,单击“Finish”完成项目创建
2、添加Struts2 库到项目
在解压的struts-2.3.16.3-all目录下的lib目录中复制需要的库,并在Struts2HelloWorld项目的WebContent/WEB-INF/lib上右键粘贴:
需要导入的库如下,每个库的说明请参加struts2的文档:
3、配置过滤器
在Struts2HelloWorld项目的WebContent/WEB-INF/web.xml中添加如下配置:
如下:
[html] view plaincopy
<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>
- 4、创建action
package com.mystruts.action;
import com.opensymphony.xwork2.Action;
/**
* @author david
*
*/
public class HelloWorld implements Action {
private String message;
/**
* @return the message
*/
public String getMessage() {
return message;
}
/* (non-Javadoc)
* @see com.opensymphony.xwork2.Action#execute()
*/
@Override
public String execute() throws Exception {
// TODO Auto-generated method stub
message = "Hello World!";
return SUCCESS;
}
}
- 5、添加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">
<%@ taglib prefix="s" uri="/struts-tags" %>
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<title>欢迎界面</title>
</head>
<body>
<h2><s:property value="message"/></h2>
</body>
</html>
- 6、添加struts.xml配置文件:
<?xml version="1.0" encoding="UTF-8" ?>
<!DOCTYPE struts PUBLIC
"-//Apache Software Foundation//DTD Struts Configuration 2.0//EN"
<struts>
<package name="HelloWorld" extends="struts-default">
<action name="HelloWorld" class="com.mystruts.action.HelloWorld">
<result name="success">/HelloWorld.jsp</result>
</action>
</package>
</struts>
- 7、调试
按下图创建一个包:
在该包中增加一个HelloWorld类,实现xwork2的Action接口:
按如下内容编辑该类:
[html] view plaincopy
在添加jsp文件之前,首先我们修改一下eclipse的默认项目编码,否则中文会是乱码,修改方法如下:
选择eclipse的主菜单中的window-Preferences
JSP Files的编码选择UTF-8
然后添加HellowWorld.jsp文件:
按下文编辑HelloWorld.jsp文件:
[html] view plaincopy
文件内容如下:
[html] view plaincopy
在浏览器中输入:http://localhost:8080/Struts2HelloWorld/HelloWorld
结果如下:
2017-11-02
下载并解压struts2,此过程相信对于常和计算机打交道的大伙儿不是问题。
Eclipse怎样配置struts2?
打开Eclipse,建立一个web项目"Text",如果不清楚该过程,请搜索参考小编的一篇相关文章:eclipse下如何配置tomcat。
Eclipse怎样配置struts2?
在struts2文件包中,找到struts-2.3.12\apps\struts2-blank.war文件,并将其用解压软件解压出来,小编将其解压到桌面的“新建文件夹”中。
Eclipse怎样配置struts2?
在解压出的文件中,找到:新建文件夹\WEB-INF\lib\ 下的所有jar包,将其中所有jar包复制到eclipse所建立的Text项目 -- WebContent -- WEB-INF --lib,切记,jar包全部导入到该lib下,不要导错。
Eclipse怎样配置struts2?
在解压出的文件中,找到:新建文件夹\WEB-INF\src\java\struts.xml,将该文件复制到第二步eclipse中新建的web项目Text下的src中,如下图所示:
Eclipse怎样配置struts2?
eclipse的Text项目中,打开struts.xml文件,进行修改,只保留如下内容,修改内容用文字描述不方便,请仔细看图:
Eclipse怎样配置struts2?
在解压出的文件中,找到:新建文件夹\WEB-INF\web.xml ,将该xml文件中的filter内容复制到Eclipse中的web.xml文件中相应位置。
如下两图:
Eclipse怎样配置struts2?
Eclipse怎样配置struts2?
eclipse的Text项目中,在WebContent下建立hello.jsp文件,并输入“HelloWorld!!”,保存。
如下图:
Eclipse怎样配置struts2?
右键单击Text项目,选择“Run As”--"Run on Server",运行该项目:
如下图:
Eclipse怎样配置struts2?
弹出网站后,会显示404的错误,此时,在地址栏后面输入“hello”或者"hello.action",回车后,即可弹出“HelloWorld!!”。