由于在struts 对象对URL请求的处理都是调用默认execute()方法,对于单一的业务请求这种方式比较合适.但在实际开发中业务请求类型方法多种多样,对一个Action可能有不同的请求,通过建立action能够解决这个问题,但会使程序变得越来越复杂,且编码越来越多,修一处可能动全身麻烦不容易维护.根据请求的数量不断增多这种方式显然不太合适.
在struts2中提供了解决这类问题的方法,称之为DMI(动态调用).通过请求action对象的方法,可以实现对某一个业务逻辑处理.DMI处理方式是通过请求Aciton对象中的一个具体方法来实现动态操作.具体就是在请求action的url地址后加上请求的字符串,与aciton对象的方法进行匹配.其中action对象名称和方法之间用"!"区分开.下面以实例的方式进行说明.
例:配置环境变量请参照前面介绍的环境配置方法.
1. 在Eclipse中创建一个java web 项目名称为:Struts2DMIDemo,添加struts2支持库击开发库等.
建立文件包括:UserAction.java,struts.xml,web.xml,add.jsp,index.jsp,update.jsp文件.
Action类 UserAction.java 内容如下:
package com.northeasttycoon;import com.opensymphony.xwork2.ActionSupport;/** * @author NorthEastTycoon * */public class UserAction extends ActionSupport { /** * */ private static final long serialVersionUID = 1L; private String info; public String getInfo() { return info; } public void setInfo(String info) { this.info = info; } public String execute() throws Exception{ info ="this is add operator!"; return "sucess"; } public String update() throws Exception{ info="this is update operator!"; return "update"; } }
web.xml 文件内容如下:
Struts 2 index.jsp struts2 org.apache.struts2.dispatcher.FilterDispatcher struts2 /*
struts.xml 文件内容如下:
/add.jsp /update.jsp
add.jsp 文件内容如下:
<%@ page contentType="text/html; charset=UTF-8" %><%@ taglib prefix="s" uri="/struts-tags" %>success
index.jsp 文件内容如下:
<%@ page contentType="text/html; charset=UTF-8" %><%@ taglib prefix="s" uri="/struts-tags" %>Hello World sucess update
update.jsp内容如下:
<%@ page contentType="text/html; charset=UTF-8" %><%@ taglib prefix="s" uri="/struts-tags" %>update
程序目录结构如下:
运行效果图:
(1) 在浏览器中输入:http://localhost:8080/Struts2DMIDemo 出现以下界面
(2)点击sucess 进入以下界面
(3)点击udpate 进入以下界面
以上为struts2动态调用实例.
备注:
作者:东北大亨
博客:
版权为个人所有,欢迎大家转载;但转载时必须注明文章来源,且在文章开头明显处给明链接。