这次给大家带来实现struts2和ajax数据交互详解,实现struts2和ajax数据交互的注意事项有哪些,下面就是实战案例,一起来看一下。
前言
我们从web 2.0的随波逐流,ajax的大放异彩说起,struts2框架自己整合了对ajax的原生支持(struts 2.1.7+,之前的版本可以通过插件实现),框架的整合只是使得json的创建变得异常简单,并且可以简单的融入到struts2框架中,当然这只是在我们需要json的时候才会显得流光溢彩。
ajax请求在项目中常常使用,今天就平时掌握的总结一下,关于使用ajax请求到struts2中的action时,前台页面与后台action之间的数据传递交互问题。
这里我主要记录下自己所掌握的几种方式。可以根据自己平时项目的需求来进行选择。
1.使用stream类型的result
此种类型可以直接让struts2中的action向客户端浏览器生成文本响应。
示例:
jsp页面:
<%@ taglib prefix="s" uri="/struts-tags" %>
<%@ page contenttype="text/html;charset=utf-8" language="java" %>
<html>
<head>
<title>ajax提交登录信息</title>
<%--导入js插件--%>
<script src="${pagecontext.request.contextpath}/demo/js/jquery-1.4.4.min.js" type="text/javascript"></script>
</head>
<body>
<h3>异步登录</h3>
<s:form id="loginform" method="post">
<s:textfield name="username"/>
<s:textfield name="psw"/>
<input id="loginbtn" type="button" value="提交">
</s:form>
<p id="show" style="display:none;"></p>
</body>
<script type="text/javascript">
$(#loginbtn).click(function(){
$(#show).hide();
//发送请求login 以各表单里歌空间作为请求参数
$.get(login,$(#loginform).serializearray(),
function(data,statustext){
$(#show).height(80)
.width(240)
.css(border,1px solid black)
.css(border-radius,15px)
.css(backgroud-color,#efef99)
.css(color,#ff0000)
.css(padding,20px)
.empty();
$(#show).append(登录结果:+data+<br/>);
$(#show).show(600);
},html);//指定服务器响应为html
});
</script>
</html>
处理逻辑的action:
/**
* description:eleven.action
* author: eleven
* date: 2018/1/26 18:09
*/
public class loginaction extends actionsupport{
private string username;
private string psw;
//输出结果的二进制流
private inputstream inputstream;
public string login() throws exception{
if(username.equals(tom)&& psw.equals(123)){
inputstream = new bytearrayinputstream(恭喜您,登录成功.getbytes(utf-8));
}else{
inputstream = new bytearrayinputstream(对不起,登录失败.getbytes(utf-8));
}
return success;
}
//提供get方法
public inputstream getinputstream() {
return inputstream;
}
public string getusername() {
return username;
}
public void setusername(string username) {
this.username = username;
}
public string getpsw() {
return psw;
}
public void setpsw(string psw) {
this.psw = psw;
}
}
action中除了接收页面传递的用户名、密码外,还有一个inputstream类型的成员变量,并为它提供了对应的get方法。get方法中返回的二进制流将会直接输出给客户端浏览器。
struts.xml配置:
<?xml version="1.0" encoding="utf-8" ?>
<!doctype struts public
"-//apache software foundation//dtd struts configuration 2.3//en"
"http://struts.apache.org/dtds/struts-2.3.dtd">
<struts>
<constant name="struts.enable.dynamicmethodinvocation" value="false" />
<constant name="struts.devmode" value="true" />
<package name="default" namespace="/" extends="struts-default">
<action name="login" class="eleven.action.loginaction" method="login">
<result type="stream">
<!--指定stream流生成响应的数据类型-->
<param name="contenttype">text/html</param>
<!--指定action中由哪个方法去输出inputstream类型的变量-->
<param name="inputname">inputstream</param>
</result>
</action>
</package>
</struts>
在浏览器中浏览该页面,并输入相关信息,然后提交,可以看到后台action直接将消息数据返回给页面,而同时页面也不需要进行刷新,而是直接在局部进行显示,这是利用了ajax的异步发送请求。注意,此种方式需要在struts.xml文件中要配置类型为stream的流,并设置inputname属性,并在action中提供inputstream对应的get方法。
运行截图:
2.使用json类型的result
有个jar包struts2-json-plugin-2.3.16.3.jar,可以为struts2增加json插件,即当action中的result的类型设为json时,也可以在客户端js中异步调用action,并且action中返回的数据,可以直接被json插件序列化成json格式的字符串,并将该字符串返回给客户端浏览器。
示例:
jsp页面:
<%@ taglib prefix="s" uri="/struts-tags" %>
<%@ page contenttype="text/html;charset=utf-8" language="java" %>
<html>
<head>
<title>ajax提交登录信息</title>
<%--导入js插件--%>
<script src="${pagecontext.request.contextpath}/demo/js/jquery-1.4.4.min.js" type="text/javascript"></script>
</head>
<body>
<h3>异步登录</h3>
<s:form id="loginform" method="post">
<s:textfield name="username"/>
<s:textfield name="psw"/>
<input id="loginbtn" type="button" value="提交">
</s:form>
<p id="show" style="display:none;"></p>
</body>
<script type="text/javascript">
$(#loginbtn).click(function(){
$(#show).hide();
//发送请求login 以各表单里歌空间作为请求参数
$.get(login,$(#loginform).serializearray(),
function(data,statustext){
//此时的data中包含username,psw,age
$(#show).height(80)
.width(300)
.css(border,1px solid black)
.css(border-radius,15px)
.css(backgroud-color,#efef99)
.css(color,#ff0000)
.css(padding,20px)
.empty();
alert(data);
$(#show).append(data+<br/>);
$(#show).show(600);
},html);
});
</script>
</html>
action代码:
public class loginaction extends actionsupport{
private string username;
private string psw;
private int age;
public string login() throws exception{
age = 18;
return success;
}
public string getusername() {
return username;
}
public void setusername(string username) {
this.username = username;
}
public string getpsw() {
return psw;
}
public void setpsw(string psw) {
this.psw = psw;
}
public int getage() {
return age;
}
public void setage(int age) {
this.age = age;
}
}
struts.xml中配置:
<?xml version="1.0" encoding="utf-8" ?>
<!doctype struts public
"-//apache software foundation//dtd struts configuration 2.3//en"
"http://struts.apache.org/dtds/struts-2.3.dtd">
<struts>
<constant name="struts.enable.dynamicmethodinvocation" value="false" />
<constant name="struts.devmode" value="true" />
<package name="default" namespace="/" extends="struts-default,json-default">
<action name="login" class="eleven.action.loginaction" method="login">
<result type="json">
<param name="nocache">true</param>
<param name="contenttype">text/html</param>
</result>
</action>
</package>
</struts>
在浏览器中浏览该页面,并输入相关信息,然后提交,可以看到后台action直接将消息数据返回给页面,而同时页面也不需要进行刷新,而是直接在局部进行显示,这是利用了ajax的异步发送请求。注意,此种方式需要在struts.xml文件中要配置package继承json-default,且配置result类型为json,并在action中提供需要传递数据的对应的get方法。当然了前提是添加了struts2-json-plugin-2.3.16.3.jar,不然struts2是不会自动将数据转为json格式的数据的。
效果截图:
故我们可以总结一下result类型为json的步骤:
1.导入jar包:struts2-json-plugin-2.3.7.jar
2.配置struts返回的结果集视图 设置type=json
3.设置对应action所在的package继承自json-default
4.将要返回的数据提供get方法
5.在struts.xml中设置返回数据的格式
对于第5步设置返回数据的格式,可以根据自己项目的需要,去具体设置,这里只是简单举例,并没有拿复杂的数据,如果是返回一个list集合,那么对于数据的格式可以进行如下设置:
<result name="test" type="json">
<!-- 设置数据的来源从某个数据得到 -->
<!-- 过滤数据从gtmlist集合中得到,且只获取集合中对象的name,跟uuid属性 --><param name="root">gtmlist</param>
<param name="includeproperties">
\[\d+\]\.name,
\[\d+\]\.uuid
</param>
</result>
上面这种方式外,还有下面这种方式
<result name="ajaxgetbysm" type="json">
<!-- 一般使用这种方式 先用来源过滤action默认从整个action中获取所有的(前提是此action中没有getaction()方法)
但是为了方便 一般不写root:action这个
然后再用包含设置进行过滤设置
-->
<param name="root">action</param>
<param name="includeproperties">
gtmlist\[\d+\]\.name,
gtmlist\[\d+\]\.uuid
</param>
</result>
上面两种方式都是设置数据从gtmlist集合中获取且,只获取对象的属性为name与uuid的。这里只做简单的举例,具体可自己下去深入研究。
附上json类型的result允许指定的常用参数:
另外,除了以上两种是struts2支持的ajax外,其实如果单纯的只是可以让服务器端可以跟客户端浏览器进行数据交互,可以使用response.getwrite()这种方式。
printwriter printwriter =response.getwriter();
printwriter.print(success);
选择哪种方式?
对于我,如果只是对增删改功能是否成功的一个flag判断的数据,则可优先选择response.getwriter().print(xxx)与设置result类型为stream的方式,但是如果是需要返回大量对象数据,在页面接收然后进行数据展示,例如页面通过ajax请求,需要后台action返回一个list集合,则就要选择配置result类型为json的方式了。
相信看了本文案例你已经掌握了方法,更多精彩请关注其它相关文章!
推荐阅读:
使用ajax和forms实现注册用户所需功能
ajax实现动态饼图和柱形图的图文详解
以上就是实现struts2和ajax数据交互详解的详细内容。