Chinaunix首页 | 论坛 | 博客
  • 博客访问: 260383
  • 博文数量: 82
  • 博客积分: 2477
  • 博客等级: 大尉
  • 技术积分: 725
  • 用 户 组: 普通用户
  • 注册时间: 2009-06-06 23:24
文章分类

全部博文(82)

文章存档

2013年(1)

2012年(3)

2011年(15)

2010年(36)

2009年(27)

分类: Java

2010-03-26 11:14:21

The org.apache.struts.actions.ForwardAction Class
The ForwardAction class provides a mechanism for forwarding
to a specified URL. As explained earlier, in an MVC Web
application, all requests to the application are supposed
to flow through the Controller servlet. This ensures that
the Controller layer of the application has an opportunity
to prepare any resources that may be needed to handle the
request (i.e., selecting the correct module and so on).
ForwardAction is provided as a simple utility action that
can be used for scenarios in which you simply want to link
to a JSP page. Of course, linking directly to the JSP would
be a violation of the MVC principles because all requests
are supposed to be routed through the Controller.
ForwardAction can be used to create links to JSPs so that
you don’t have to create an action whose only
responsibility is to forward a request every time you want
to link to a JSP. With ForwardAction, you simply create an
action mapping in the Struts configuration file and specify
the location to which the action will forward.

To use ForwardAction, simply create action mapping entries
in the Struts configuration file, as shown next:


            type="org.apache.struts.actions.ForwardAction"
     parameter="/menu.jsp/>


For each page to which you want to link, you must create an
action mapping. Each action mapping uses ForwardAction, but
specifies a different path for the action. The parameter
attribute specifies the URL that will be forwarded to when
the specified path is accessed.

The org.apache.struts.actions.IncludeAction Class
The IncludeAction class provides a mechanism for including
the contents of a specified URL. This action behaves
similarly to ForwardAction, but instead of forwarding to
the specified URL, the specified URL is included. This
action is useful when you want to include the contents of
one page in another.

Using IncludeAction is quite easy. Just create action
mapping entries in the Struts configuration file:


            type="org.apache.struts.actions.IncludeAction"
     parameter="/menu.jsp/>

For each page you want to include, you must create an
action mapping. Each action mapping uses IncludeAction, but
specifies a different path for the action. The parameter
attribute specifies the URL that will be included when the
specified path is accessed.

The org.apache.struts.actions.LocaleAction Class
The LocaleAction class provides a mechanism for setting a
user’s locale and then forwarding to a specified page. This
action provides a convenient mechanism for changing a
user’s locale. For example, consider a site that is offered
in English and Spanish versions. LocaleAction can be used
to offer users a way to switch between the two languages
without having to change their browser settings. With
LocaleAction you simply create an action mapping and then
link to the action, specifying request parameters for which
locale to switch to and a page to forward after the locale
has been switched.

To use LocaleAction, you must create an action mapping
entry for it in the Struts configuration file and then link
to the action, specifying locale information and a page to
forward to after the locale has been set. Following is an
example of how to configure LocaleAction in the Struts
configuration file:


            type="org.apache.struts.actions.LocaleAction"/>


Once configured in the Struts configuration file,
LocaleAction can be put to use. Simply create a link to the
action and specify the locale settings that will be set and
a page to forward to. Locale settings are specified with
two request parameters: language and country. The page to
forward to after setting the locale is specified with the
page request parameter. The following URL illustrates how
to use the request parameters:


country=MX&language=es&page=/Menu.do

This example URL sets the country to MX and the language to
es. The /Menu.do page will be forwarded to after the new
locale has been set.
阅读(706) | 评论(0) | 转发(0) |
给主人留下些什么吧!~~