1.在MyEclipse里面配置Struts2环境,
1.1新建一个web project项目(和平时见web项目时一样);
1.2右键单击项目名,在里面找到MyEclipse --- project facets ---install Apache Struts 2.xacet;
2.创建第一个程序:
2.1struts.xml文件:
<?xml version="1.0" encoding="UTF-8" ?>
<!DOCTYPE struts PUBLIC "-//Apache Software Foundation//DTD Struts Configuration 2.1//EN"
"http://struts.apache.org/dtds/struts-2.1.dtd">
<struts>
<package name = "second" namespace = "/test" extends = "struts-default">
<action name = "helloworld" class = "com.first.HelloWorld" method = "execute">
<result name = "success">/WebRoot/WEB-INF/page/hello.jsp</result>
</action>
</package>
</struts>
2.2HelloWorld.java文件:
package com.first;
public class HelloWorld {
private String message;
public String getMessage() {
return message;
}
public String execute(){
message = "这是我的第一个Struts2项目!";
return "success";
}
}
2.3web.xml文件的内容配置是自己动加载;
2.4 将需要的jar包导入到lib中:
我的第一个基于MyEclipse下的Struts2运用程序 - java web - 陆总的博客
3.将项目部署到tomcat下即可运行。