
struts2
iteye_7108
这个作者很懒,什么都没留下…
展开
-
struts.xml配置详解(转)
本文转自:http://www.cnblogs.com/fmricky/archive/2010/05/20/1740479.html struts.xml是我们在开发中利用率最高的文件,也是Struts2中最重要的配置文件。一下分别介绍一下几个struts.xml中常用到的标签1、<include>利用include标签,可以将一个struts.xml配置文件分割...原创 2011-07-07 14:08:17 · 107 阅读 · 0 评论 -
Could not create JarEntryRevision for......
错误:Could not create JarEntryRevision for [jar:file:/D:/tools/apache-tomcat-6.0.32/webapps/ch02/WEB-INF/lib/struts2-core-2.2.3.jar]!java.lang.NoClassDefFoundError: org/apache/commons/io/FileUtils.......原创 2011-07-07 14:44:27 · 254 阅读 · 0 评论 -
java.lang.NoClassDefFoundError: org/apache/commons/lang/StringUtils
错误:Exception starting filter struts2java.lang.NoClassDefFoundError: org/apache/commons/lang/StringUtils... 可能是缺少commons-lang-x.x.jar和commons-fileupload-x.x.x.jar包原创 2011-07-07 14:48:49 · 241 阅读 · 0 评论 -
Dispatcher initialization failed
今天复习struts2,做例子时出现下面异常:严重: Dispatcher initialization failedjava.lang.RuntimeException: java.lang.reflect.InvocationTargetException at com.opensymphony.xwork2.inject.ContainerImpl$MethodInjector.inje...原创 2011-07-17 20:27:06 · 76 阅读 · 0 评论 -
struts2框架剖析(笔记)
Struts2框架由两部分组成:XWork2和Struts2。Xwork是一个命令模式框架,它是Struts2的基础。 Xwork核心功能:1、IoC容器2、表达式语言(OGNL)3、数据类型转换4、验证5、可插入的配置...... Xwork的核心概念:1、action2、拦截器(Interceptor)-- 可在action调用之前和之后执行代码...原创 2011-08-01 22:02:07 · 112 阅读 · 0 评论