目的
说实话,写这段文字的目的并不是要和谁分享什么,而是作为一个初学者,对知识的记录和熟悉。
我是做android的,却对后台情有独钟,因为我一直觉得,有前端,有后台才是一个完整的系统。通过写笔记来记录成长。
开始创建
搭建环境
这方面的文章很多,就简单提一下:JDK、Tomcat、Eclipse,有这三个就OK。
除了环境之外Struts也是必不可少,下载备用(我下载的是完整版,也就是struts-x.x.x-all,也可以下载struts-x.x.x-min-lib.zip,因为这个压缩包里的jar包刚好是创建struts项目所有必须的基本库)。
创建动态Web项目
启动Eclipse,File->New->Dynamic Web Project,输入项目名HelloWorld,按如图所示进行配置
点击finish完成项目创建。
导入Struts库
将之前下载的Struts解压到任意目录,得到如图所示的目录结构:
如果你下载的是struts-x.x.x-min-lib.zip版,那么将得到:
这样一个目录。这个目录下刚好有这些jar包:
如果你下载的是struts-x.x.x-all包,那么你也可以在lib目录下找到相应的jar文件。
将这些jar包全部拷贝到WebContent/WEB-INF/lib下:
下面这步不要忘了:选中所有这些jar包,右键->Build Path -> Add to Build Path.
编写一个Action类
在Java Resources/src目录下创建包com.xxx.action,创建HelloWorldAction类
package com.xxx.action;
public class HelloWorldAction {
private String name;
public String execute() throws Exception{
return "success";
}
public String getName() {
return name;
}
public void setName(String name) {
this.name = name;
}
}
创建两个JSP页面
在WebContent目录下创建index.jsp页面,用于向HelloWorldAction 提交数据:
<%@ page language="java" contentType="text/html; charset=ISO-8859-1"
pageEncoding="ISO-8859-1"%>
<%@ taglib prefix="s" uri="/struts-tags" %>
Insert title here
在WebContent目录下创建HelloWorld.jsp页面,用于显示提交后的结果:
<%@ page language="java" contentType="text/html; charset=ISO-8859-1"
pageEncoding="ISO-8859-1"%>
<%@ taglib prefix="s" uri="/struts-tags" %>
Insert title here
Hello World! Hello
配置项目
配置web.xml:
在WebContent/WEB-INF/下创建web.xml文件,用于配置Strtuts:
Welcome to Tomcat
Welcome to Tomcat
index.jsp
struts2
org.apache.struts2.dispatcher.filter.StrutsPrepareAndExecuteFilter
struts2
/*
配置struts.xml:
在WebContent/WEB-INF/下面创建classes文件夹,并且在classes文件夹下创建struts.xml文件:
/HelloWorld.jsp
如果你的项目和我的有所区别的,注意修改struts.xml中相应的配置信息,配置完成后的项目结构:
配置完成后运行项目,浏览器访问http://localhost:8080/HelloWorld/
如果你看到:
恭喜你,项目创建成功!如果你看到StatusLogger Log4j2 could not find a logging implementation错误,请关闭tomcat,clean项目,重新运行。Over。
源码地址:https://github.com/xudefei/HelloWorld