struts 2.3配置和struts 2.0的区别

阅读更多

1.导入核心jar的不同

struts 2.3 共需导入9个核心jar包
commons-fileupload-1.2.2.jar :文件上传组件,2.1.6版本后必须加入此文件

commons-io-2.0.1.jar  : 包含io实现类

commons-lang-2.5.jar  : 包含了Filter的实现类

commons-logging-1.1.1.jar :日志包,Struts 2框架使用这个日志包来支持Log4J和JDK 1.4+的日志记录。

javassist-3.11.0.GA.jar :操作字节码的jar

ognl-3.0.4.jar :对象图导航语言(Object Graph Navigation Language),struts2框架通过其读写对象的属性

struts2-core-2.3.1.2.jar :Struts 2框架的核心类库,如标签库

xwork-core-2.3.1.2.jar :XWork类库,Struts 2在其上构建

freemarker-2.3.18.jar :Struts 2的UI标签的模板

struts2.0只需导入5个核心jar包

commons-logging-1.0.4.jar

ognl-2.6.11.jar

struts2-core-2.0.11.2.jar

xwork-core-2.0.5.jar

freemarker-2.3.8.jar

2.web.xml中filter的区别

struts 2.3:


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

struts 2.0:

 
  struts
  org.apache.struts2.dispatcher.FilterDispatcher
 

你可能感兴趣的:(struts)