文章目录
  1. 1. 方法1:依赖Servlet API
  2. 2. 方法2:使用result type=”stream”
  3. 3. 方法3:struts 2 json插件

Ajax本质上和普通的HTTP请求是一样的,只不过普通的HTTP请求是给人看的,而Ajax请求是给JS代码去用的。

所以Ajax请求的页面一般比普通的HTTP请求的响应内容还要简单,可能是一个页面的一部分,也可能是xml、json等结构化的数据,还可能是一个简单的字符串。

所以,在Struts 2中使用Ajax,Action一般就不会调用一个jsp视图来显示了(如果Ajax请求内容是页面的一部分也可能调用jsp视图),而是通过一些其他的方式。

下面介绍了三种方法,用于Action实现Ajax请求。

方法1:依赖Servlet API

1
2
3
4
5
6
7
8
9
10
11
12
13
14
public class HelloAction extends ActionSupport {

public String execute() throws Exception {
HttpServletResponse response = ServletActionContext.getResponse();
response.setCharacterEncoding("UTF-8");
response.setContentType("text/html; charset=utf-8");
PrintWriter out = response.getWriter();
out.print("HelloWorld");
out.flush();
out.close();
return NONE; // 或return null
}

}
1
2
3
4
<package name="main" namespace="/" extends="struts-default">
<action name="hello" class="com.xxg.HelloAction" method="execute">
</action>
</package>

在Action的方法中return NONE或return null表示直接用Action来处理,而不需要调用result,所以在配置文件的action标签中也没有result标签。

这里直接获取到Servlet中的HttpServletResponse对象,通过response的输出流写一个字符串,和不使用Struts 2直接用Servlet类似。

方法2:使用result type=”stream”

在Struts 2的文档中推荐了一个比上一个方法更简单的方式,使用type为stream的result。通过这种方法,可以不依赖于Servlet API。

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
public class HelloAction extends ActionSupport {

private InputStream inputStream;

public InputStream getInputStream() {
return inputStream;
}

public String execute() throws Exception {
String str = "HelloWorld";
inputStream = new ByteArrayInputStream(str.getBytes("UTF-8"));
return SUCCESS;
}

}

1
2
3
4
5
6
7
8
<package name="main" namespace="/" extends="struts-default">
<action name="hello" class="com.xxg.HelloAction" method="execute">
<result name="success" type="stream">
<param name="contentType">text/html; charset=utf-8</param>
<param name="inputName">inputStream</param>
</result>
</action>
</package>

在struts配置文件中,result的type设为stream。其中包含两个参数,第一个是contentType,表示响应的类型,如果有中文的话最好设置一下编码,第二个参数是用来指定Action中的对应的输入流,它的默认值就是inputStream,所以可以省略。

方法3:struts 2 json插件

上面两种方法可以返回的内容很随意,可以是任何字符串。

在很多Ajax请求会用到json字符串,因为它可以很方便的转换成JavaScript对象。

使用struts2-json-plugin可以很方便的生成json(用上面的两种方法调用json工具生成json也是不错的选择,这样可以不用使用这个插件)。

此时需要添加一个jar文件:struts2-json-plugin-x.x.x.x.jar。

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
public class HelloAction extends ActionSupport {

private String name;

private int age;

private List<String> friends;

public String getName() {
return name;
}

public int getAge() {
return age;
}

public List<String> getFriends() {
return friends;
}

public String execute() throws Exception {
this.name = "xxg";
this.age = 22;
this.friends = new ArrayList<String>();
this.friends.add("姚明");
this.friends.add("林丹");
return SUCCESS;
}

}

1
2
3
4
5
<package name="main" namespace="/" extends="json-default">
<action name="hello" class="com.xxg.HelloAction" method="execute">
<result name="success" type="json"></result>
</action>
</package>

在package中extends应该改为json-default而不是struts-default,result的type设为json。

通过浏览器打开这个页面可以看到这个json:

1
{"age":22,"friends":["姚明","林丹"],"name":"xxg"}
文章目录
  1. 1. 方法1:依赖Servlet API
  2. 2. 方法2:使用result type=”stream”
  3. 3. 方法3:struts 2 json插件