struts2环境配置

流程:

  1. 导入jar包
  2. 配置web.xml
  3. 编写action类
  4. 配置struts.xml

1.使用eclipse创建项目

       File》New》Dynamic web project [记得选择生成web.xml文件,会在WebContent目录下生成]

2.在WebContent》WEB-INF>lib中导入包,并build path

      struts2环境配置_第1张图片

  下载地址:https://download.csdn.net/download/douzhenwen/11225684

   注:一定要build path,鼠标移到包上右击鼠标会出现build path选项

3.在web.xml文件中配置struts过滤器(jsp页面在webcontent下新建jsp目录存放,故在web.xml中将index.jsp的路径修改)



	 
    index.html
    index.htm
    jsp/index.jsp
    default.html
    default.htm
    default.jsp
  
	
	
        struts2
        org.apache.struts2.dispatcher.ng.filter.StrutsPrepareAndExecuteFilter
    
    
        struts2
        /*
    

 4.创建action类

package com.adu.action;
import com.opensymphony.xwork2.ActionSupport;
public class HelloWorld extends ActionSupport {
    private String message;
    @Override
    public String execute() throws Exception {
        message = "Hello World,Struts2";
        return "success";
    }
    public String getMessage(){
        return message;
    }
}

5.配置struts.xml文件(在src目录下新建strut.xml文件,dtd约束不可少,即第二第三行的代码)




    
        
            jsp/first.jsp
        
    

说明:jsp目录下有两个jsp文件,第一个为index.jsp首页,第二个为first.jsp文件,index.jsp跳转到first.jsp

struts2环境配置_第2张图片

项目demo链接:https://download.csdn.net/download/douzhenwen/11225691

你可能感兴趣的:(web开发)