本文为原创,如需转载,请注明作者和出处,谢谢!
上一篇:struts2教程2:处理一个form多个submit
在本文中将详细讲述struts.xml文件的常用配置及注意事项。
1.
使用标签重用配置文件
在struts2中提供了一个默认的struts.xml文件,但如果package、action、interceptors等配置比较多时,都放到一个struts.xml文件不太容易维护。因此,就需要将struts.xml文件分成多个配置文件,然后在struts.xml文件中使用标签引用这些配置文件。这样做的优点如下:
结构更清晰,更容易维护配置信息。
配置文件可以复用。如果在多个web程序中都使用类似或相同的配置文件,那么可以使用标签来引用这些配置文件,这样可以减少工作量。
假设有一个配置文件,文件名为newstruts.xml,代码如下:
xml version="1.0" encoding="utf-8" ?>
doctype struts public
"-//apache software foundation//dtd struts configuration 2.0//en"
"http://struts.apache.org/dtds/struts-2.0.dtd">
<struts>
<package name="demo" extends="struts-default" >
<action name="submit" class="action.moresubmitaction">
<result name="save" >
/result.jsp
result>
<result name="print">
/result.jsp
result>
action>
package>
struts>
则struts.xml引用newstruts.xml文件的代码如下:
xml version="1.0" encoding="utf-8" ?>
doctype struts public
"-//apache software foundation//dtd struts configuration 2.0//en"
"http://struts.apache.org/dtds/struts-2.0.dtd">
<struts>
<include file="newstruts.xml"/>
<package name="test" extends="struts-default">
package>
struts>
大家要注意一下,用引用的xml文件也必须是完成的struts2的配置。实际上在引用时是单独解析的xml文件,而不是将被引用的文件插入到struts.xml文件中。
2.
action的别名
在默认情况下,struts2会调用动作类的execute方法。但有些时候,我们需要在一个动作类中处理不同的动作。也就是用户请求不同的动作时,执行动作类中的不同的方法。为了达到这个目的,可以在标签中通过method方法指定要指行的动作类的方法名,并且需要为不同的动作起不同的名子(也称为别名)。如下面代码所示:
xml version="1.0" encoding="utf-8" ?>
doctype struts public
"-//apache software foundation//dtd struts configuration 2.0//en"
"http://struts.apache.org/dtds/struts-2.0.dtd">
<struts>
<package name="demo" extends="struts-default" >
<action name="test" class="action.myaction">
action>
<action name="my" class="action. myaction" method="my">
action>
package>
struts>
上面代码的两个动作的class属性都指向同一个类,name为这个类起了两个动作别名:test和my。在动作my中,使用了method属性指定要要运行的方法名为my。
在myaction类中必须要有my方法,代码如下:
package action;
import com.opensymphony.xwork2.actionsupport;
public class myaction extends actionsupport
{
public string execute() throws exception
{
// 处理test动作的代码
}
public string my() throws exception
{
// 处理my动作的代码
}
}
除了在struts.xml中配置别名,还可以通过请求参数来描述指定动作(并不需要在struts.xml中配置)。请求参数的格式如下:
http://localhost:8080/contextpath/actionname!method.action
关于通过请求指定动作的详细内容,请参阅笔者写的《struts2教程2:处理一个form多个submit》。
3.
为action指定参数
在struts2中还可以为action指定一个或多个参数。大家还记着struts1.x是如何设置的action参数不? 在struts1.x中可以使用标签的parameter属性为其指定一个action参数,如果要指定多个,就只能通过逗号(,)或其他的分隔符将不同的参数隔开。而在struts2中可以通过标签指定任意多个参数。代码如下:
<action name="submit" class="action.myaction">
<param name="param1">value1param>
<param name="param2">value2param>
<result name="save" >
/result.jsp
result>
action>
当然,在action中读这些参数也非常简单,只需要象获取请求参数一样在action类中定义相应的setter方法即可(一般不用定义getter方法)。如下面的代码将读取param1和param2参数的值:
package action;
import com.opensymphony.xwork2.actionsupport;
public class myaction extends actionsupport
{
private string param1;
private string param2;
public string execute() throws exception
{
system.out.println(param1 param2);
}
public void setparam1(string param1)
{
this.param1 = param1;
}
public void setparam2(string param2)
{
this.param2 = param2;
}
}
当struts2在调用execute之前,param1和param2的值就已经是相应参数的值了,因此,在execute方法中可以直接使用param1和param2。
4.
选择result类型
在默认时,标签的type属性值是“dispatcher”(实际上就是转发,forward)。开发人员可以根据自己的需要指定不同的类型,如redirect、stream等。如下面代码所示:
/result.jsp
这此result-type可以在struts2-core-2.0.11.1.jar包或struts2源代码中的struts-default.xml文件中找到,在这个文件中找到标签,所有的result-type都在里面定义了。代码如下:
<result-types>
<result-type name="chain" class="com.opensymphony.xwork2.actionchainresult"/>
<result-type name="dispatcher" class="org.apache.struts2.dispatcher.servletdispatcherresult" default="true"/>
<result-type name="freemarker" class="org.apache.struts2.views.freemarker.freemarkerresult"/>
<result-type name="httpheader" class="org.apache.struts2.dispatcher.httpheaderresult"/>
<result-type name="redirect" class="org.apache.struts2.dispatcher.servletredirectresult"/>
<result-type name="redirectaction" class="org.apache.struts2.dispatcher.servletactionredirectresult"/>
<result-type name="stream" class="org.apache.struts2.dispatcher.streamresult"/>
<result-type name="velocity" class="org.apache.struts2.dispatcher.velocityresult"/>
<result-type name="xslt" class="org.apache.struts2.views.xslt.xsltresult"/>
<result-type name="plaintext" class="org.apache.struts2.dispatcher.plaintextresult" />
<result-type name="redirect-action" class="org.apache.struts2.dispatcher.servletactionredirectresult"/>
<result-type name="plaintext" class="org.apache.struts2.dispatcher.plaintextresult" />
result-types>
5.
全局result
有很多时候一个初很多使用,这时可以使用标签来定义全局的,代码如下:
<struts>
<package name="demo" extends="struts-default">
<global-results>
<result name="print">/result.jspresult>
global-results>
<action name="submit" class="action.moresubmitaction">
action>
<action name="my" class="action.moresubmitaction" method="my">
action>
package>
struts>
如果中没有相应的,struts2就会使用全局的。
下一篇:
《android开发完全讲义(第2版)》(本书凯发k8网页登录的版权已输出到台湾)
《android高薪之路:android程序员面试宝典 》
新浪微博: 昵称:李宁_lining