1.传统方式JSON输出
这一点跟传统的Servlet的处理方式基本上一模一样,代码如下
01 | public void doAction() throws IOException{ |
02 | HttpServletResponse response=ServletActionContext.getResponse(); |
04 | response.setContentType( "text/html" ); |
06 | out = response.getWriter(); |
10 | user.setName( "JSONActionGeneral" ); |
11 | user.setPassword( "JSON" ); |
12 | user.setSay( "Hello , i am a action to print a json!" ); |
13 | JSONObject json= new JSONObject(); |
14 | json.accumulate( "success" , true ); |
15 | json.accumulate( "user" , user); |
16 | out.println(json.toString()); |
struts.xml中的配置:
1 | < package name = "default" extends = "struts-default" namespace = "/" > |
2 | < action name = "testJSONFromActionByGeneral" class = "cn.ysh.studio.struts2.json.demo.action.UserAction" method = "doAction" > |
这个action没有result,且doAction方法没有返回值!
2.structs2封装方式
04 | < param name = "root" >dataMap</ param > |
06 | < param name = "excludeNullProperties" >true</ param > |
08 | < param name = "includeProperties" > |
12 | < param name = "excludeProperties" > |
JSON数据在Action类中是根据getter方法的返回值自动装配的,也就是说完全可以不需要重写execute方法。JSON的生成机制(上述两个必需的包中提供的方法)会直接从setter方法获取到request中提供的值,并且自动装配getter方法提供的返回值。期间如果有其它的功能操作,如计算、查询数据库、重组数据等,可以写到getter方法中,也可以写到execute方法中统一执行。这里需要注意的是execute方法的返回值字符串是无效的,可以随意设置,因为在后面的配置文件中并不会用到。
getter方法返回值的类型可以采用基本数据类型、String类、集合类(List、Map等)以及诸如Double、Integer等打包类。这些都不会影响JSON的生成,因为对于结果而言都是字符串类型的;而集合类在生成时会被自动迭代,因此生成的结果中其本身的集合类型(列表、映射表等)也不会改变。
因此在Action类可以将所有的结果数据保存到一个List或Map中在通过getter方法输出,也可以设置多个getter方法返回不同类型、不同变量的数据。这些数据在JSON中的名称与getter方法名中一致。
与基本的Action相比,生成JSON的Action在配置文件struts.xml中主要有两点不同:
1. 不能与基本的Action配置在同一个package中,新的package必须扩展自(extends)json-default命名空间;
2. result标签中可以不包含name属性(因为没用),但是必须包含type属性,且值必须为“json”,即<result type=”json” ></result>,表明这是一个JSON数据,不需要跳转页面。