Struts2学习笔记之Maven构建Struts2项目(二)

阅读更多

Struts2学习笔记之Maven构建Struts2项目(二)

 

Struts所需Jar包


	1.7
	2.1.8

	
		
			
				org.apache.struts
				struts2-core
				${struts2-version}
			
			
				log4j
				log4j
				1.2.14
			
			
				javassist
				javassist
				3.8.0.GA
			
			
				junit
				junit
				4.7
				test
			
		
        

 Struts2的配置文件

    Struts2框架启动时,默认加载在src目录下的struts.xml配置文件,所有我们需要准备struts的配置文件




 

启用Struts

   上面我们把struts2依赖的jar包添加上了,并且有struts的配置文件,下面就是让Struts2启用

   Struts需要在项目部署上服务器的时候就启动,那么我们需要如下配置:


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

 

 下面就需要我们开始Struts2的编程之旅了! 

你可能感兴趣的:(Struts2,Maven,webapp)