添加struts2需要的必备包

添加struts2的时候,只添加core包还不行,初始化web.xml的时候会报ClassNotFoundException: org.apache.struts2.dispatcher.FilterDispatcher的异常,需要将以下四个包添加才可以。
[list]
[*]struts2-core-2.0.14.jar
[*]xwork-2.0.7.jar
[*]freemarker-2.3.8.jar
[*]ognl-2.6.11.jar
[/list]
与spring整合需要添加以下包
[list]
[*]spring.jar
[*]commons-logging-1.1.jar
[*]aspectjweaver-1.5.3.jar
[*]struts2-spring-plugin-2.0.6.jar
[/list]
与spring整合,在web.xml中,除了配置
org.springframework.web.context.ContextLoaderListener
监听,还要配置
org.springframework.web.context.request.RequestContextListener
监听,否则请求action时会报错。

你可能感兴趣的:(框架)