Struts 2 学习(一) 环境配置

首先,搭建Struts 2 开发环境,导入Struts 2 需要的jar包(struts2-core-2.x.x.jar,xwork-core-2.x.x.jar,ognl-20.6.x.jar,freemarker-2.3.x.jar,commons-logging-1.x.x.jar,commons-fileupload-1.2.1.jar),web.xml会自动完成,内容如下:



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

然后配置struts.xml(会默认放置在src中)




	
	
		
			
			/index.jsp
		
	
    
现在我们举一个例子:

UserAction.java

package com.dxc.action;

import com.opensymphony.xwork2.ActionSupport;

public class UserAction extends ActionSupport{

	@Override
	public String execute() throws Exception {
		// TODO Auto-generated method stub
		System.out.println("侬好啊");
		return SUCCESS;
	}
	
}
现在看我们struts.xml




	
	
		
			/index.jsp
		
	
    
而我们的web.xml没有改变。。

index.jsp页面


   hello
  
注意:此处的“user”是和struts.xml中action标签的name属性是保持一致的






你可能感兴趣的:(struts,2,Struts,2)