搭建struts2框架hello world入门小案例以及访问流程

一.导包

搭建struts2框架hello world入门小案例以及访问流程_第1张图片

jar包说明

搭建struts2框架hello world入门小案例以及访问流程_第2张图片

二.书写Action

package cn.liangce.a_hello;

public class HelloAction {

	public String hello(){
		System.out.println("hello world");
		return "success";
	}
}

三.书写struts.xml配置




       
      
                        
                      
                                        
                                /hello.jsp
		      
	

四.在web.xml中书写struts2核心过滤器


  
  	struts2
  	org.apache.struts2.dispatcher.ng.filter.StrutsPrepareAndExecuteFilter
  
  
  	struts2
  	/*

五.测试结果:注意访问资源的地址

搭建struts2框架hello world入门小案例以及访问流程_第3张图片

访问流程:

搭建struts2框架hello world入门小案例以及访问流程_第4张图片

你可能感兴趣的:(struts2)