struts2基本知识点—HelloWorld篇

1).struts2的基本配置:
1、找到\struts-2.3.14.2\apps\struts2-blank.war并解压
2、找到刚刚解压的struts2-blank\lib的jar包并导入到你的项目中去

3、找到struts2-blank\web.xml把的配置复制到你项目中的web.xml中


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



	struts2
	/*

4、找到struts2-blank\struts.xml 复制到你的项目中src\

5、配置你的struts.xml


	
	

	
        
            
                /hello.jsp
            
        
    
    


6、在你的浏览器中输入http://localhost:8888/struts2_01/helloWorld.action
就可以访问到hello.jsp中的内容了。

注:helloWorld.action中的action可以省略不写




你可能感兴趣的:(struts2,struts2,Struts,struts2入门)