加入收藏 | 设为首页 | 会员中心 | 我要投稿 李大同 (https://www.lidatong.com.cn/)- 科技、建站、经验、云计算、5G、大数据,站长网!
当前位置: 首页 > 百科 > 正文

DWR+Struts结合的使用

发布时间:2020-12-15 20:57:34 所属栏目:百科 来源:网络整理
导读:应用DWR+Struts要注意以下两点: 1.其中load-on-startup的部分要特別注意,ActionServlet要首先初始化,也就是说数字要比DWR的要小. 2.在struts-config.xml中action标签中的scope属性要设置成 session ,不可以使用默认的request,其原因是: 【在dwr的org.direc

应用DWR+Struts要注意以下两点:

1.其中<load-on-startup>的部分要特別注意,ActionServlet要首先初始化,也就是说数字要比DWR的要小.

2.在struts-config.xml中action标签中的scope属性要设置成session,不可以使用默认的request,其原因是:

【在dwr的org.directwebremoting.struts.StrutsCreator中它是这样获取formbean的:
 ActionForm formInstance = (ActionForm) WebContextFactory.get().getSession().getAttribute(formBean);】

在dwr.xml中设置:

<create creator="struts" javascript="JDwrstruts">
<param name="formBean" value="dwrForm" />
</create>

注:蓝色为固定属性,红色为struts-config.xml中的formbean的name属性值,来对应你的ActionForm.

页面代码:

<head>
<title>JSP for DwrForm form</title>
<script src="dwr/interface/JDwrstruts.js"></script>
<script src="dwr/engine.js"></script>
<script src="dwr/util.js"></script>
<script type="text/javascript">
function testdwrstruts(){
var uname =DWR.Util.getValue('username');
alert(uname);
if(uname==' '){
// 发送请求到服务器,判断用户名是否存在
JDwrstruts.getUsername(judgeResult);
}
}

function judgeResult(data){
DWR.Util.setValue('username',data);
}
</script>

</head>
<body>
<html:form action="/dwrStruts.do">
username:<html:text property="username" onblur="testdwrstruts();"></html:text>
<html:submit/><html:cancel/>
</html:form>
</body>

注:取控件值时请使用蓝色处获取,否则容易造成控件失效!

这里使用的是DWR调用Struts中的formbean,如果想调用Struts中的Action,建议直接调用,不需要使用DWR,Action中构建是业务逻辑,如果非要调用,建议提取业务方法,在Action中自定义方法调用。

(编辑:李大同)

【声明】本站内容均来自网络,其相关言论仅代表作者个人观点,不代表本站立场。若无意侵犯到您的权利,请及时与联系站长删除相关内容!

    推荐文章
      热点阅读