本篇文章包含了在用Struts开发web应用时经常碰到的一些异常和错误,根据异常或错误信息本身,经常可以找到潜在的错误发生原因。
下面列出了一些Struts的常见错误和异常,并给出了一些可能发生此类错误或异常的原因。有的后面有相关连接,你可以通过它找到更多的信息。
Cannot retrieve mapping for action
|
异常
|
javax.servlet.jsp.JspException: Cannot retrieve mapping for action /Login
(
/Login
是你的
action
名字)
|
|
|
可能原因
|
action
没有再
struts-config.xml
中定义,或没有找到匹配的
action
,例如在
JSP
文件中使用
<html:form action="
Login.do
"
.
将表单提交给
Login.do
处理,如果出现上述异常,请查看
struts-config.xml
中的定义部分,有时可能是打错了字符或者是某些不符合规则,可以使用
struts console
工具来检查。
|
Cannot retrieve definition for form bean null
|
异常
|
org.apache.jasper.JasperException: Cannot retrieve definition for form bean null
|
可能原因
|
这个异常是因为
Struts
根据
struts-config.xml
中的
mapping
没有找到
action
期望的
form bean
。大部分的情况可能是因为在
form-bean
中设置的
name
属性和
action
中设置的
name
属性不匹配所致。换句话说,
action
和
form
都应该各自有一个
name
属性,并且要精确匹配,包括大小写。这个错误当没有
name
属性和
action
关联时也会发生,如果没有在
action
中指定
name
属性,那么就没有
name
属性和
action
相关联。当然当
action
制作某些控制时,譬如根据参数值跳转到相应的
jsp
页面,而不是处理表单数据,这是就不用
name
属性,这也是
action
的使用方法之一。
|
No action instance for path /xxxx
could be created
|
异常
|
No action instance for path /xxxx
could be created
|
可能原因
|
特别提示:因为有很多中情况会导致这个错误的发生,所以推荐大家调高你的
web
服务器的日志
/
调试级别,这样可以从更多的信息中看到潜在的、在试图创建
action
类时发生的错误,这个
action
类你已经在
struts-config.xml
中设置了关联(即添加了
<action>
标签)。
|
在
struts-config.xml
中通过action标签的class属性指定的action类不能被找到有很多种原因,例如:
- 定位编译后的
.class
文件失败。
Failure to place compiled
.class
file for the action in the classpath (
在
web
开发中,
class
的的位置在
r
WEB-INF/classes,
所以你的action class必须要在这个目录下。例如你的action类位于WEB-INF/classes/action/Login.class,那么在struts-config.xml中设置action的属性type时就是action.Login
).
- 拼写错误,这个也时有发生,并且不易找到,特别注意第一个字母的大小写和包的名称。
|
在
struts-config.xml中指定的action类没有继承自Stuts的Action类,或者你自定义的Action类没有继承自Struts提供的Action类。
你的action类必须继承自Struts提供的Action类。
|
你的classpath的问题。例如web server没有发现你的资源文件,资源文件必须在
WEB-INF/classes/目录下
。
|
Problem in
struts-config.xml
file with action mapping.
|
Problem with
data-sources.xml
file.
|
相关链接
|
|
No getter method for property XXXX
of bean org.apache.struts.taglib.html.BEAN
|
异常
|
javax.servlet.jsp.JspException: No getter method for property username
of bean org.apache.struts.taglib.html.BEAN
|
可能原因
|
没有位
form bean
中的某个变量定义
getter
方法
|
这个错误主要发生在表单提交的
FormBean
中,用
struts
标记
<html:text property=”username”>
时,在
FormBean
中必须有一个
getUsername()
方法。注意字母“
U
”。
|
Related Links
|
|
java.lang.NoClassDefFoundError: org/apache/struts/action/ActionForm
|
错误
|
java.lang.NoClassDefFoundError: org/apache/struts/action/ActionForm
|
可能原因
|
这个错误主要发生在在
classpath
中找不到相应的
Java .class
文件。如果这个错误发生在
web
应用程序的运行时,主要是因为指定的
class
文件不在
web server
的
classpath
中(
/WEB-INF/classes
和
/WEB-INF/lib)。
在上面的错误中,原因是找不到ActionForm类。
|
This error is sometimes seen when one or more
ActionForm.class
instances are actually in the classpath. This most often occurs when
ActionForm.class
is made available correctly by placing
struts.jar
in the
/WEB-INF/lib
directory. When this library has been correctly placed and it is verified that
ActionForm.class
actually is present in the
struts.jar
file, the problem is either that more than one copy of
ActionForm.class
is in the classpath or (more likely) that duplicate versions of class files other than
ActionForm
are in the same classpath, causing confusion. This is especially true if a class that extends
ActionForm
is made available twice, such as in an
.ear
file that encompasses a
.war
file as well as in the
.war
file's own classpath (
/WEB-INF/classes
).
This problem can be resolved by guaranteeing that there are no
redundant classes, especially those related to Struts (directly from
Struts or extensions of Struts), in the web application's view.
|
相关连接
|
|
Exception creating bean of class org.apache.struts.action.ActionForm: {1}
|
异常
|
javax.servlet.jsp.JspException: Exception creating bean of class org.apache.struts.action.ActionForm: {1}
|
可能原因
|
Instantiating Struts-provided
ActionForm
class directly instead of instantiating a class derived off
ActionForm
. This might occur implicitly if you specify that a form-bean is this Struts
ActionForm
class rather than specifying a child of this class for the form-bean.
|
Not associating an
ActionForm
-descended class with an
action
can also lead to this error.
|
Related Links
|
|
Cannot find ActionMappings or ActionFormBeans collection
|
Exception
|
javax.servlet.jsp.JspException: Cannot find ActionMappings or ActionFormBeans collection
|
可能原因
|
不是标识
Struts actionServlet
的
<servlet>
标记就是映射
.do
扩展名的
<sevlet-mapping>
标记或者两者都没有在
web.xml
中声明。
|
在
struts-config.xml
中的打字或者拼写错误也可导致这个异常的发生。例如缺少一个标记的关闭符号
/>
。最好使用
struts console
工具检查一下
。
|
另外,
load-on-startup
必须在
web.xml
中声明,这要么是一个空标记,要么指定一个数值,这个数值用来表
servlet
运行的优先级,数值越大优先级越低。
|
还有一个和使用
load-on-startup
有关的是使用
Struts
预编译
JSP
文件时也可能导致这个异常。
|
相关链接
|
|
NullPointerException at ... RequestUtils.forwardURL
|
异常
|
java.lang.NullPointerException at org.apache.struts.util.RequestUtils.forwardURL(RequestUtils.java:1223)
|
可能原因
|
在
struts-config.xml
中的
forward
元素缺少
path
属性。例如应该是如下形式:
<forward name="userhome" path="/user/userhome.jsp"/>
|
Cannot find bean org.apache.struts.taglib.html.BEAN in any scope
|
Exception
|
javax.servlet.jsp.JspException: Cannot find bean org.apache.struts.taglib.html.BEAN in any scope
|
|
|
Probable Causes
|
试图在Struts的form标记外使用form的子元素。这常常发生在你在</html:form>后面使用Struts的html标记。
另外要注意可能你不经意使用的无主体的标记,如<html:form … />,这样web 服务器解析时就当作一个无主体的标记,随后使用的所有<html>标记都被认为是在这个标记之外的,如又使用了<html:text property=”id”>
还有就是在使用taglib引入HTML标记库时,你使用的prefix的值不是html。
|
相关连接
|
|
Missing message for key xx.xx.xx
|
Exception
|
javax.servlet.jsp.JspException: Missing message for key xx.xx.xx
|
Probable Causes
|
这个
key
的值对没有在资源文件
ApplicationResources.properties
中定义。如果你使用
eclipse
时经常碰到这样的情况,当项目重新编译时,
eclipse
会自动将
classes
目录下的资源文件删除。
|
资源文件
ApplicationResources.properties
不在
classpath
中
应将资源文件放到
WEB-INF/classes
目录下,当然要在
struts-config.xml
中定义
)
|
Cannot find message resources under key org.apache.struts.action.MESSAGE
|
异常
|
Cannot find message resources under key org.apache.struts.action.MESSAGE
|
可能原因
|
很显然,这个错误是发生在使用资源文件时,而
Struts
没有找到资源文件。
|
Implicitly trying to use message resources that are not available (such as using empty
html:options
tag instead of specifying the options in its body -- this assumes options are specified in
ApplicationResources.properties
file)
|
XML parser issues -- too many, too few, incorrect/incompatible versions
|
Related Links
|
|
No input attribute for mapping path /loginAction
|
错误
|
No input attribute for mapping path /xxxxAction
|
可能原因
e
|
No
input
attribute in action mapping in
struts-config.xml
file for the action with the name specified in the error message. An
input
attribute is not required if form validation is not performed (either because the
validate
attribute is set to
false
or because the validation method in the relevant form class is not implemented. The
input
attribute specifies the page leading to this action because that page
is used to display error messages from the form validation.
|
Related Links
|
|
Strange Output Characters
|
错误
|
Strange and seemingly random characters in HTML and on screen, but not in original JSP or servlet.
|
可能原因
|
混和使用
Struts
的
html:form
标记和标准的
HTML
标记不正确。
|
使用的编码样式在本页中不支持。
|
"Document contained no data" or no data rendered on page
|
错误
|
"Document contained no data" in Netscape
|
No data rendered (completely empty) page in Microsoft Internet Explorer
|
可能原因
|
使用一个
Action
的派生类而没有实现
perform()
方法或
execute()
方法。在
Struts1.0
中实现的是
perform()
方法,在
Struts1.1
中实现的是
execute()
方法,但
Struts1.1
span
|
分享到:
相关推荐
Struts常见错误及原因分析
### Struts常见错误及原因分析 #### 一、异常 javax.servlet.jsp.JspException: Cannot retrieve mapping for action /Login **异常描述**: 该异常通常出现在尝试访问一个未在`struts-config.xml`文件中正确配置...
以下是一些常见的Struts错误及其原因和解决方案: 1. 异常`javax.servlet.jsp.JspException: Cannot retrieve mapping for action /Login` 这个错误表明在`struts-config.xml`中没有为`/Login`动作定义映射,或者...
以下是对Struts常见错误及其原因的分析: 1. **Action类找不到或找不到对应的Action Mapping** 当请求无法映射到任何已定义的Action时,通常是因为配置文件(struts-config.xml)中的Action Mapping配置不正确。...
### Struts 常见错误及其解决方案 #### 一、`Servlet.service() for servlet jsp threw exception` 在Struts框架的开发过程中,我们经常会遇到一些常见的异常情况,这些异常不仅会打断我们的工作流程,还会影响到...
然而,如同任何复杂的框架一样,Struts2在开发和部署过程中可能会遇到一些常见错误。以下是一些典型的问题及相应的解决方案: 1. **异常启动过滤器Struts2:No mapping found for dependency** 这个错误通常是因为...
Java Struts是一个流行的MVC框架,用于构建Java Web应用程序。然而,在使用Struts进行开发时,...通过理解和掌握这些常见错误的原因,开发者可以更快地定位并修复问题,提高开发效率,确保Struts应用程序的稳定运行。
### Struts 常见错误汇总 #### 一、No bean found under attribute key XXX **问题描述:** 在使用 Struts 框架时,如果遇到 `No bean found under attribute key XXX` 这类错误,通常意味着在 Struts 的配置文件 ...
### 配置Struts2常见错误及解决方案 #### 引言 Struts2是一个基于Java的Web应用框架,它能够帮助开发者快速构建出结构清晰、易于维护的应用程序。然而,在实际开发过程中,开发者经常会遇到一些配置上的问题,这些...
以下是一些常见的Struts错误及其可能的原因: 1. **Cannot retrieve mapping for action** 当你看到"Cannot retrieve mapping for action /Login"这样的异常时,通常表示Struts无法在`struts-config.xml`配置文件...
### Struts 常见错误汇总与解析 #### 一、Nobean found under attribute key XXX 在 Struts 框架中,如果在请求作用域(request scope)中查找某个 ActionForm bean 时未找到,则会抛出此异常。这通常是因为在 `...
### J2EE综合—Struts常见错误的全面总结 #### 一、概述 在Java企业级应用开发中,Struts框架作为MVC架构的一种实现,为开发者提供了强大的工具集来构建复杂的Web应用程序。然而,在实际项目开发过程中,由于配置...
在使用Struts开发时,理解并正确处理这些常见错误至关重要,它们可以帮助你避免不必要的开发困扰,提高开发效率。对于初学者来说,理解错误信息的含义以及如何从配置文件中查找和修复问题是必备技能。
### Struts 常见异常及处理 #### 1. javax.servlet.ServletException: Must specify type attribute if name is specified - **异常描述**:当在 JSP 页面中使用自定义标签时,如果标签中定义了 `name` 属性,则...
本文将深入剖析Struts2的源码,揭示其工作原理,并汇总常见问题,帮助开发者更好地理解和使用这个框架。 一、Struts2框架基础 1. 框架结构:Struts2的核心组件包括Action、Result、Interceptor(拦截器)等。...
理解并解决这些常见错误对于Java开发者来说至关重要,它们可以帮助开发者更好地理解和调试代码,从而提高开发效率和程序的稳定性。在遇到这些错误时,仔细检查错误信息,分析可能的原因,并根据上述解决方案进行修复...
### Struts2.1.6+Spring2.5.6+Hibernate3.3.1框架整合常见错误 在使用Struts2.1.6、Spring2.5.6与Hibernate3.3.1进行框架整合时,开发者经常会遇到一些常见的问题。这些问题可能会导致程序无法正常运行或出现异常...
### Java常见错误分析知识点 #### 一、常见错误概述与认识 在开发Java应用程序时,开发者经常会遇到各种各样的错误,这些错误不仅包括语法错误,还包括运行时异常、配置问题等。了解并掌握如何处理这些错误是每个...