Package | Description |
---|---|
org.apache.struts.action |
The action package is the core of the struts framework,
providing the "Controller" aspect of a MVC model.
|
org.apache.struts.config |
The "config" package contains configuration objects that correspond to
elements that may be specified in the
struts-config.xml
module configuration file. |
org.apache.struts.config.impl |
Provides default implementation classes for the configuration objects.
|
Modifier and Type | Class and Description |
---|---|
class |
ActionFormBean
An ActionFormBean is the definition of a form bean that
is loaded from a
<form-bean> element in the Struts
configuration file. |
class |
ActionForward
An ActionForward represents a destination to which the
controller, RequestProcessor, might be directed to perform a
RequestDispatcher.forward or HttpServletResponse.sendRedirect to, as a
result of processing activities of an Action class.
|
class |
ActionMapping
An ActionMapping represents the information that the
controller,
RequestProcessor , knows about the mapping of a
particular request to an instance of a particular Action
class. |
class |
ActionRedirect
A subclass of
ActionForward which is designed for use in
redirecting requests, with support for adding parameters at runtime. |
class |
ForwardingActionForward
A subclass of
ActionForward that defaults the
redirect attribute to false . |
class |
RedirectingActionForward
A subclass of ActionForward that defaults the
redirect attribute to true . |
class |
RequestActionMapping
Subclass of
ActionMapping that defaults the form bean scope
to request . |
class |
SessionActionMapping
Subclass of
ActionMapping that defaults the form bean scope
to session . |
Modifier and Type | Class and Description |
---|---|
class |
ActionConfig
A JavaBean representing the configuration information of an
<action> element from a Struts module configuration
file. |
class |
ControllerConfig
A JavaBean representing the configuration information of a
<controller> element in a Struts configuration
file. |
class |
ExceptionConfig
A JavaBean representing the configuration information of an
<exception> element from a Struts configuration
file. |
class |
FormBeanConfig
A JavaBean representing the configuration information of a
<form-bean> element in a Struts configuration file. |
class |
FormPropertyConfig
A JavaBean representing the configuration information of a
<form-property> element in a Struts configuration
file. |
class |
ForwardConfig
A JavaBean representing the configuration information of a
<forward> element from a Struts configuration file. |
class |
MessageResourcesConfig
A JavaBean representing the configuration information of a
<message-resources> element in a Struts configuration
file. |
Modifier and Type | Method and Description |
---|---|
protected void |
BaseConfig.inheritProperties(BaseConfig baseConfig)
Compare the properties of this config with that of the given and
copy those that are not present.
|
Modifier and Type | Class and Description |
---|---|
class |
ModuleConfigImpl
The collection of static configuration information that describes a
Struts-based module.
|
Copyright © 2000–2016 Apache Software Foundation. All rights reserved.