第一次使用struts2

在pom.xml中导入struts2-core-2.3.24.jar包

    	
    		org.apache.struts
    		struts2-core
    		2.3.24
    	

可以在web.xml中添加过滤器

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

添加 struts.xml





	
	
	
	
	
	
	
	
	

	
	
				
		
			
			/info.jsp
		

	


CustomerAction.java中的findCustById()方法

	public String findCustById() {
		System.out.println("传过来的客户ID是" + custId);
		return SUCCESS;
	}

浏览器中输入:
http://localhost:8080/maven-first/findById.action?custId=12

你可能感兴趣的:(第一次使用struts2)