`
numen06
  • 浏览: 76146 次
  • 性别: Icon_minigender_1
  • 来自: 上海
文章分类
社区版块
存档分类
最新评论

Struts2之灵活返回Json,摆脱注解和配置文件

阅读更多
简单继承StrutsResultSupport以便之后扩展
package com.wesley.framework.struts;

import org.apache.struts2.dispatcher.StrutsResultSupport;

public abstract class BaseResult extends StrutsResultSupport {

	/**
	 * 
	 */
	private static final long serialVersionUID = -589433181928883640L;

	public BaseResult() {
		super();
	}

	public BaseResult(String location) {
		super(location);
	}

	public boolean isAjax = false;

	public boolean isAjax() {
		return isAjax;
	}

	public void setAjax(boolean isAjax) {
		this.isAjax = isAjax;
	}

}

重新返回操作方法doExecute
package com.wesley.framework.struts;

import java.io.PrintWriter;

import javax.servlet.http.HttpServletRequest;
import javax.servlet.http.HttpServletResponse;

import org.apache.struts2.ServletActionContext;
import org.apache.struts2.json.JSONUtil;

import com.opensymphony.xwork2.ActionInvocation;
import com.wesley.framework.action.BaseAction;
import com.wesley.framework.commen.json.StrutsJsonBean;

public class JsonResult extends BaseResult {
	/**
	 * 
	 */
	private static final long serialVersionUID = -3291151711598040681L;
	protected boolean isAjax = true;

	@Override
	protected void doExecute(String arg0, ActionInvocation invocation)
			throws Exception {
		// 定义上下文的环境
		// ServletContext sc = ServletActionContext.getServletContext();
		HttpServletRequest request = ServletActionContext.getRequest();
		HttpServletResponse response = ServletActionContext.getResponse();
		response.setCharacterEncoding(request.getCharacterEncoding());
		System.out.println(request.getCharacterEncoding());
		// 设置返回类型
		response.setContentType("application/json");
		PrintWriter output = response.getWriter();// 获取响应打印
		BaseAction baseAction = (BaseAction) invocation.getAction();// 获得基础Action类
		StrutsJsonBean strutsJsonBean = baseAction.getStrutsJsonBean();
		JSONUtil.serialize(output, strutsJsonBean.getRoot(),
				strutsJsonBean.getExcludeProperties(),
				strutsJsonBean.getIncludeProperties(),
				strutsJsonBean.getExcludeNullProperties());
		output.close();
	}
}

StrutsJsonBean封装了主要的输出Json的几个属性,放在BaseAction中传输参数
package com.wesley.framework.commen.json;

import java.util.ArrayList;
import java.util.Collection;
import java.util.Set;
import java.util.regex.Pattern;

import org.apache.commons.lang.ArrayUtils;
import org.apache.commons.lang.StringUtils;
import org.apache.struts2.json.JSONUtil;

import com.wesley.framework.commen.StringFormat;

public class StrutsJsonBean {
	public static final String REGEXP_PATTERN = "regexp";

	private Object root;
	private java.util.Collection<Pattern> excludeProperties;
	private java.util.Collection<Pattern> includeProperties;
	private Boolean excludeNullProperties = true;

	public StrutsJsonBean() {
		super();
	}

	public StrutsJsonBean(Object root, String excludeProperties,
			String includeProperties) {
		super();
		this.root = root;
		this.setExcludeProperties(excludeProperties);
		this.setIncludeProperties(includeProperties);
	}

	StrutsJsonBean(Object root, String excludeProperties,
			String includeProperties, Boolean excludeNullProperties) {
		super();
		this.root = root;
		this.setExcludeProperties(excludeProperties);
		this.setIncludeProperties(includeProperties);
		this.excludeNullProperties = excludeNullProperties;
	}

	public StrutsJsonBean(Object root, Collection<Pattern> excludeProperties,
			Collection<Pattern> includeProperties, Boolean excludeNullProperties) {
		super();
		this.root = root;
		this.excludeProperties = excludeProperties;
		this.includeProperties = includeProperties;
		this.excludeNullProperties = excludeNullProperties;
	}

	public Object getRoot() {
		return root;
	}

	public void setRoot(Object root) {
		this.root = root;
	}

	public java.util.Collection<Pattern> getExcludeProperties() {
		return excludeProperties;
	}

	public Collection<Pattern> getIncludeProperties() {
		return includeProperties;
	}

	public void setIncludeProperties(String commaDelim) {
		includeProperties = JSONUtil.processIncludePatterns(
				JSONUtil.asSet(commaDelim), REGEXP_PATTERN);
	}

	public Boolean getExcludeNullProperties() {
		return excludeNullProperties;
	}

	public void setExcludeProperties(String commaDelim) {
		Set<String> excludePatterns = JSONUtil.asSet(commaDelim);
		if (excludePatterns != null) {
			this.excludeProperties = new ArrayList<Pattern>(
					excludePatterns.size());
			for (String pattern : excludePatterns) {
				this.excludeProperties.add(Pattern.compile(pattern));
			}
		}
	}

	public static StrutsJsonBean newRowInstance(Object list,
			String... beanPoperties) {
		StrutsJsonBean struts = new StrutsJsonBean(list, null, null);
		if (ArrayUtils.isEmpty(beanPoperties))
			beanPoperties = new String[0];
		String[] temp = new String[beanPoperties.length];
		for (int i = 0; i < beanPoperties.length; i++) {
			temp[i] = StringFormat.softLink("Rows\\[?\\d*\\]?\\.",
					StringUtils.replace(beanPoperties[i], ".", "\\."));
		}
		String[] baseInfo = { "pagesize", "Total", "page" };
		temp = (String[]) ArrayUtils.addAll(temp, baseInfo);
		struts.setIncludeProperties(StringFormat.formatByComma(temp));
		return struts;
	}

}

在Struts2的配置文件中添加返回类型
<result-types>
			<result-type name="jsonresult"
				class="com.wesley.framework.struts.JsonResult" />
		</result-types>

完成之后就可以在Action中调用返回类型了
@Action(value = "json", results = { @Result(name = SUCCESS, type = JSON_RESULT) })
1
0
分享到:
评论

相关推荐

    java开源包2

    [ini4j] 是一个简单的Java类库,用来读写Windows的ini配置文件。同时还包含一个 Java Perferences API 的实现。 拒绝服务测试工具 Port Groper PortGroper 是一款java写的开源拒绝服务测试工具,它不是僵尸网络类的...

    java开源包1

    [ini4j] 是一个简单的Java类库,用来读写Windows的ini配置文件。同时还包含一个 Java Perferences API 的实现。 拒绝服务测试工具 Port Groper PortGroper 是一款java写的开源拒绝服务测试工具,它不是僵尸网络类的...

    java开源包11

    [ini4j] 是一个简单的Java类库,用来读写Windows的ini配置文件。同时还包含一个 Java Perferences API 的实现。 拒绝服务测试工具 Port Groper PortGroper 是一款java写的开源拒绝服务测试工具,它不是僵尸网络类的...

    java开源包3

    [ini4j] 是一个简单的Java类库,用来读写Windows的ini配置文件。同时还包含一个 Java Perferences API 的实现。 拒绝服务测试工具 Port Groper PortGroper 是一款java写的开源拒绝服务测试工具,它不是僵尸网络类的...

    java开源包6

    [ini4j] 是一个简单的Java类库,用来读写Windows的ini配置文件。同时还包含一个 Java Perferences API 的实现。 拒绝服务测试工具 Port Groper PortGroper 是一款java写的开源拒绝服务测试工具,它不是僵尸网络类的...

    java开源包5

    [ini4j] 是一个简单的Java类库,用来读写Windows的ini配置文件。同时还包含一个 Java Perferences API 的实现。 拒绝服务测试工具 Port Groper PortGroper 是一款java写的开源拒绝服务测试工具,它不是僵尸网络类的...

    java开源包10

    [ini4j] 是一个简单的Java类库,用来读写Windows的ini配置文件。同时还包含一个 Java Perferences API 的实现。 拒绝服务测试工具 Port Groper PortGroper 是一款java写的开源拒绝服务测试工具,它不是僵尸网络类的...

    java开源包4

    [ini4j] 是一个简单的Java类库,用来读写Windows的ini配置文件。同时还包含一个 Java Perferences API 的实现。 拒绝服务测试工具 Port Groper PortGroper 是一款java写的开源拒绝服务测试工具,它不是僵尸网络类的...

    java开源包8

    [ini4j] 是一个简单的Java类库,用来读写Windows的ini配置文件。同时还包含一个 Java Perferences API 的实现。 拒绝服务测试工具 Port Groper PortGroper 是一款java写的开源拒绝服务测试工具,它不是僵尸网络类的...

    java开源包7

    [ini4j] 是一个简单的Java类库,用来读写Windows的ini配置文件。同时还包含一个 Java Perferences API 的实现。 拒绝服务测试工具 Port Groper PortGroper 是一款java写的开源拒绝服务测试工具,它不是僵尸网络类的...

    java开源包9

    [ini4j] 是一个简单的Java类库,用来读写Windows的ini配置文件。同时还包含一个 Java Perferences API 的实现。 拒绝服务测试工具 Port Groper PortGroper 是一款java写的开源拒绝服务测试工具,它不是僵尸网络类的...

    java开源包101

    [ini4j] 是一个简单的Java类库,用来读写Windows的ini配置文件。同时还包含一个 Java Perferences API 的实现。 拒绝服务测试工具 Port Groper PortGroper 是一款java写的开源拒绝服务测试工具,它不是僵尸网络类的...

    Java资源包01

    [ini4j] 是一个简单的Java类库,用来读写Windows的ini配置文件。同时还包含一个 Java Perferences API 的实现。 拒绝服务测试工具 Port Groper PortGroper 是一款java写的开源拒绝服务测试工具,它不是僵尸网络类的...

    JAVA上百实例源码以及开源项目源代码

    FTP的目标是:(1)提高文件的共享性(计算机程序和/或数据),(2)鼓励间接地(通过程序)使用远程计算机,(3)保护用户因主机之间的文件存储系统导致的变化,(4)为了可靠和高效地传输,虽然用户可以在终端上...

Global site tag (gtag.js) - Google Analytics