/**
     * 将请求参数封装成Map对象
     *
     * @param json 参数
     * @return Object
     */
    public static Map wrapMap(String json) {
        if (json == null) return null;
        ObjectMapper mapper = new ObjectMapper();
        mapper.getDeserializationConfig().disable(DeserializationConfig.Feature.FAIL_ON_UNKNOWN_PROPERTIES);
        mapper.getDeserializationConfig().setDateFormat(new DateFormat());
        try {
            return mapper.readValue(json, TypeFactory.mapType(HashMap.class, String.class, Object.class));
        } catch (Exception e) {
            logger.error(getExceptionMessage(e));
            return null;
        }
    }

/**
     * 将请求参数map封装成Bean对象
     *
     * @param request 请求对象
     * @param cls     类class
     * @return Object
     */
    public static <T> T wrapBean(Class<T> cls, HttpServletRequest request) {
        try {
            T obj = cls.newInstance();
            if (obj instanceof Map) {
                BeanUtils.populate(obj, request.getParameterMap());
            } else {
                setBeanProperty(obj, request.getParameterMap());
            }
            return obj;
        } catch (Exception e) {
            logger.error(getExceptionMessage(e));
            return null;
        }
    }

/**
     * 将请求参数的parameterMap设置到bean对象的属性中
     *
     * @param obj bean对象
     * @param map request.getParameterMap()
     */
    private static void setBeanProperty(Object obj, Map map) {
        if (map == null) return;
        for (Object o : map.entrySet()) {
            Map.Entry entry = (Map.Entry) o;
            String key = (String) entry.getKey();

String[] values = null;
            String value = null;
            Object object = entry.getValue();
            if (object != null) {
                if (object.getClass() == String[].class) {
                    values = (String[]) object;
                    value = values[0];
                } else if (object.getClass() == String.class) {
                    values = new String[]{(String) object};
                    value = (String) object;
                }
            }

//String[] values = (String[]) entry.getValue();
            if (!PropertyUtils.isWriteable(obj, key)) continue;
            try {
                Class cls = PropertyUtils.getPropertyType(obj, key);
                if (cls == null) continue;
                //String value = (values != null && values.length > 0) ? values[0] : null;
                if (cls == String.class) PropertyUtils.setProperty(obj, key, value);
                else if (cls == String[].class) PropertyUtils.setProperty(obj, key, values);
                else if (cls == BigDecimal.class) PropertyUtils.setProperty(obj, key, BeanUtil.toBigDecimal(value));
                else if (cls == BigDecimal[].class) PropertyUtils.setProperty(obj, key, BeanUtil.toBigDecimal(values));
                else if (cls == BigInteger.class) PropertyUtils.setProperty(obj, key, BeanUtil.toBigInteger(value));
                else if (cls == BigInteger[].class) PropertyUtils.setProperty(obj, key, BeanUtil.toBigInteger(values));
                else if (cls == Boolean.class) PropertyUtils.setProperty(obj, key, BeanUtil.toBoolean(value));
                else if (cls == Boolean[].class) PropertyUtils.setProperty(obj, key, BeanUtil.toBoolean(values));
                else if (cls == Double.class) PropertyUtils.setProperty(obj, key, BeanUtil.toDouble(value));
                else if (cls == Double[].class) PropertyUtils.setProperty(obj, key, BeanUtil.toDouble(values));
                else if (cls == Float.class) PropertyUtils.setProperty(obj, key, BeanUtil.toFloat(value));
                else if (cls == Float[].class) PropertyUtils.setProperty(obj, key, BeanUtil.toFloat(values));
                else if (cls == Integer.class) PropertyUtils.setProperty(obj, key, BeanUtil.toInteger(value));
                else if (cls == Integer[].class) PropertyUtils.setProperty(obj, key, BeanUtil.toInteger(values));
                else if (cls == Long.class) PropertyUtils.setProperty(obj, key, BeanUtil.toLong(value));
                else if (cls == Long[].class) PropertyUtils.setProperty(obj, key, BeanUtil.toLong(values));
                else if (cls == Short.class) PropertyUtils.setProperty(obj, key, BeanUtil.toShort(value));
                else if (cls == Short[].class) PropertyUtils.setProperty(obj, key, BeanUtil.toShort(values));
                else if (cls == Byte.class) PropertyUtils.setProperty(obj, key, BeanUtil.toByte(value));
                else if (cls == Byte[].class) PropertyUtils.setProperty(obj, key, BeanUtil.toByte(values));
                else if (cls == Date.class) PropertyUtils.setProperty(obj, key, BeanUtil.toDate(value));
                else if (cls == Date[].class) PropertyUtils.setProperty(obj, key, BeanUtil.toDate(values));
            } catch (Exception e) {
                logger.error(getExceptionMessage(e));
            }
        }
    }

/**
     * 设置对象的属性
     *
     * @param obj
     * @param field
     * @param value
     */
    public static void setProperty(Object obj, Field field, String value) {
        try {
            if (field.getType() == String.class) PropertyUtils.setProperty(obj, field.getName(), value);
            else if (field.getType() == BigDecimal.class)
                PropertyUtils.setProperty(obj, field.getName(), BeanUtil.toBigDecimal(value));
            else if (field.getType() == BigInteger.class)
                PropertyUtils.setProperty(obj, field.getName(), BeanUtil.toBigInteger(value));
            else if (field.getType() == Boolean.class)
                PropertyUtils.setProperty(obj, field.getName(), BeanUtil.toBoolean(value));
            else if (field.getType() == Double.class)
                PropertyUtils.setProperty(obj, field.getName(), BeanUtil.toDouble(value));
            else if (field.getType() == Float.class)
                PropertyUtils.setProperty(obj, field.getName(), BeanUtil.toFloat(value));
            else if (field.getType() == Integer.class)
                PropertyUtils.setProperty(obj, field.getName(), BeanUtil.toInteger(value));
            else if (field.getType() == Long.class)
                PropertyUtils.setProperty(obj, field.getName(), BeanUtil.toLong(value));
            else if (field.getType() == Short.class)
                PropertyUtils.setProperty(obj, field.getName(), BeanUtil.toShort(value));
            else if (field.getType() == Byte.class)
                PropertyUtils.setProperty(obj, field.getName(), BeanUtil.toByte(value));
            else if (field.getType() == Date.class)
                PropertyUtils.setProperty(obj, field.getName(), BeanUtil.toDate(value));
        } catch (Exception e) {
            logger.error(getExceptionMessage(e));
        }
    }

/**
     * 将以json方式提交的字符串封装成Bean对象
     *
     * @param json json对象
     * @param cls  bean的class
     * @return Object
     */
    public static <T> T wrapBean(Class<T> cls, String json) {
        if (json == null) return null;
        ObjectMapper mapper = new ObjectMapper();
        mapper.getDeserializationConfig().disable(DeserializationConfig.Feature.FAIL_ON_UNKNOWN_PROPERTIES);
        mapper.getDeserializationConfig().setDateFormat(new DateFormat());
        try {
            return mapper.readValue(json, cls);
        } catch (Exception e) {
            logger.error(getExceptionMessage(e));
            return null;
        }
    }

/**
     * 将以json方式提交的字符串封装成Bean对象
     *
     * @param json     json对象
     * @param javaType bean的class
     * @return Object
     */
    @SuppressWarnings({"unchecked"})
    public static <T> T wrapBean(JavaType javaType, String json) {
        if (json == null) return null;
        ObjectMapper mapper = new ObjectMapper();
        mapper.getDeserializationConfig().disable(DeserializationConfig.Feature.FAIL_ON_UNKNOWN_PROPERTIES);
        mapper.getDeserializationConfig().setDateFormat(new DateFormat());
        try {
            return (T) mapper.readValue(json, javaType);
        } catch (Exception e) {
            logger.error(getExceptionMessage(e));
            return null;
        }
    }

/**
     * 将json 数组封装成 arrays
     *
     * @param json json数组
     * @param cls  类名
     * @return T[]
     */
    @SuppressWarnings({"unchecked"})
    public static <T> T wrapArray(Class cls, String json) {
        if (json == null) return null;
        return (T) wrapBean(TypeFactory.arrayType(cls), json);
    }

/**
     * 将以json方式提交的字符串封装成Bean集合
     *
     * @param jsonArray json数组
     * @param cls       bean的class
     * @return List
     */
    public static <T> List<T> wrapBeanList(Class<T> cls, String jsonArray) {
        if (jsonArray == null) return null;
        ObjectMapper mapper = new ObjectMapper();
        mapper.getDeserializationConfig().disable(DeserializationConfig.Feature.FAIL_ON_UNKNOWN_PROPERTIES);
        mapper.getDeserializationConfig().setDateFormat(new DateFormat());
        try {
            return mapper.readValue(jsonArray, TypeFactory.collectionType(List.class, cls));
        } catch (Exception e) {
            logger.error(getExceptionMessage(e));
            return null;
        }
    }

/**
     * 对象转换json字符串
     *
     * @param obj 对象
     * @return String
     */
    public static String toJsonString(Object obj) {
        if (obj == null) return null;
        ObjectMapper mapper = new ObjectMapper(); // can reuse, share globally
        mapper.getSerializationConfig().setSerializationInclusion(JsonSerialize.Inclusion.NON_NULL);
        mapper.getSerializationConfig().disable(SerializationConfig.Feature.WRITE_NULL_MAP_VALUES);
        mapper.configure(SerializationConfig.Feature.WRITE_DATES_AS_TIMESTAMPS, false);
//        mapper.configure(JsonParser.Feature.ALLOW_SINGLE_QUOTES, true);//为true表示允许单引号
//        mapper.configure(JsonParser.Feature.ALLOW_UNQUOTED_FIELD_NAMES, true);//为true表示允许无引号包括的字段
//        mapper.getSerializationConfig().setDateFormat(new SimpleDateFormat("yyyy-MM-dd HH:mm:ss"));
        mapper.getSerializationConfig().setDateFormat(new DateFormat("yyyy-MM-dd HH:mm:ss"));
        CustomSerializerFactory sf = new CustomSerializerFactory();
//        sf.addSpecificMapping(Long.class, new LongSerializer());
//        sf.addSpecificMapping(Double.class,new DoubleSerializer());
        sf.addSpecificMapping(TIMESTAMP.class, new TimeStampSerializer());
        mapper.setSerializerFactory(sf);
        try {
            StringWriter sb = new StringWriter();
            mapper.writeValue(sb, obj);
            return sb.toString();
        } catch (Exception e) {
            logger.error(getExceptionMessage(e));
            return null;
        }
    }

关于jackson处理数据的更多相关文章

  1. 利用Jackson将数据转换为Json

    1.确保相关依赖导入 2.配置web.xml <?xml version="1.0" encoding="UTF-8"?> <web-app ...

  2. sun.jersey使用Jackson转换数据

    差点被com.sun.jersey自身的json转换吓死,遇到List等类型,会把这些也转换为json对象,而不是jsonarray. 被园里的同行拯救了,在web.xml中配置一下就ok. < ...

  3. JSON解析器之jackson json数据和java对象转换

  4. 利用Jackson序列化实现数据脱敏

    几天前使用了Jackson对数据的自定义序列化.突发灵感,利用此方法来简单实现接口返回数据脱敏,故写此文记录. 核心思想是利用Jackson的StdSerializer,@JsonSerialize, ...

  5. com.fasterxml.jackson.databind.JsonMappingException

    背景 在搭建SSM整合activiti项目时,在查找activiti定义的流程模板时,前台不能够接受到ProcessDefinition这个对象. 原因 ProcessDefinition是一个接口, ...

  6. SpringBoot前后端分离Instant时间戳自定义解析

    在SpringBoot项目中,前后端规定传递时间使用时间戳(精度ms). @Data public class Incident { @ApiModelProperty(value = "故 ...

  7. spring boot中的约定优于配置

    Spring Boot并不是一个全新的框架,而是将已有的Spring组件整合起来. Spring Boot可以说是遵循约定优于配置这个理念产生的.它的特点是简单.快速和便捷. 既然遵循约定优于配置,则 ...

  8. Spring Boot基础讲解

    Spring Boot Spring Boot 是由Pivotal团队提供的框架,它并不是一个全新的框架,而是将已有的 Spring 组件整合起来,设计目的是用来简化新Spring应用的初始搭建以及开 ...

  9. Oracle 基于用户管理恢复的处理

    ================================ -- Oracle 基于用户管理恢复的处理 --================================ Oracle支持多种 ...

随机推荐

  1. composer 一些使用说明

    1 使用订制的包 配置 "repositories": [ { "type": "path", "url": " ...

  2. POJ 3087 Shuffle'm Up

    Shuffle'm Up Time Limit:1000MS     Memory Limit:65536KB     64bit IO Format:%I64d & %I64u Submit ...

  3. iOS开启隐藏文件以及显示文件方法

    显示:defaults write com.apple.finder AppleShowAllFiles -bool true 隐藏:defaults write com.apple.finder A ...

  4. Windows中一个22年的漏洞

     X Windows系统,今天作为世界各地的Linux桌面,已经存在超过20年了,仍然存在Bug.几天前Sysadmins为libXfont库提供了补丁,来对应新发现的已经在代码中存在了22年的特权升 ...

  5. hadoop机架感知与网络拓扑分析:NetworkTopology和DNSToSwitchMapping

    hadoop网络拓扑结构在整个系统中具有很重要的作用,它会影响DataNode的启动(注册).MapTask的分配等等.了解网络拓扑对了解整个hadoop的运行会有很大帮助. 首先通过下面两个图来了解 ...

  6. Android调用系统照相机

    ndroid调用系统相机实现拍照功能 在实现拍照的功能时遇到了很多问题,搜索了很多资料,尝试了很多办法,终于解决了,下面简要的描述下在开发过程中遇到的问题. 虽然之前看过android开发的书,但是没 ...

  7. 三、Python 变量、运算符、表达式

    3.1 变量 变量是计算机内存中的一块区域,变量可以存储规定范围内的值,值可以改变,其实是将值在内存中保存地址位交给变量,变量去内存中获取,重新赋值,改变的就是内存地址位. 命名: 变量名由字母.数字 ...

  8. myeclipse 快捷键大全

    转自:http://q.cnblogs.com/q/47190/ Technorati 标记: Shortcut keys Ctrl+1 快速修复(最经典的快捷键,就不用多说了)Ctrl+D: 删除当 ...

  9. HTML,CSS,font-family:中文字体的英文名称 (宋体 微软雅黑)

    工作中遇到的问题,上网看到别人整理的,我就记下来,嘻嘻!!! 宋体 SimSun 黑体 SimHei 微软雅黑 Microsoft YaHei 微软正黑体 Microsoft JhengHei 新宋体 ...

  10. HTML中的select只读

    因为Select下拉框只支持disabled属性,不支持readOnly属性,而在提交时,disabled的控件,又是不提交值的.现提供以下几种解决方案: 1.在html中使用以下代码,在select ...