Java web 開發中幾個高可複用的類

來源:互聯網
上載者:User

標籤:exce   val   string   class   for   classes   json   log   lse   

1. JsonUtil

  通過  jackson包提供的方法 實現一個字串轉對象,對象轉字串的類,使用情境,redis實現單點登陸 

package com.mmall.util;import com.google.common.collect.Lists;import com.mmall.pojo.Category;import com.mmall.pojo.TestPojo;import com.mmall.pojo.User;import lombok.extern.slf4j.Slf4j;import org.apache.commons.lang.StringUtils;import org.codehaus.jackson.map.DeserializationConfig;import org.codehaus.jackson.map.ObjectMapper;import org.codehaus.jackson.map.SerializationConfig;import org.codehaus.jackson.map.annotate.JsonSerialize.Inclusion;import org.codehaus.jackson.type.JavaType;import org.codehaus.jackson.type.TypeReference;import java.io.IOException;import java.text.SimpleDateFormat;import java.util.Date;import java.util.HashMap;import java.util.List;import java.util.Map;/** * Created by geely */@Slf4jpublic class JsonUtil {    private static ObjectMapper objectMapper = new ObjectMapper();    static{        //對象的所有欄位全部列入        objectMapper.setSerializationInclusion(Inclusion.ALWAYS);        //取消預設轉換timestamps形式        objectMapper.configure(SerializationConfig.Feature.WRITE_DATES_AS_TIMESTAMPS,false);        //忽略空Bean轉json的錯誤        objectMapper.configure(SerializationConfig.Feature.FAIL_ON_EMPTY_BEANS,false);        //所有的日期格式都統一為以下的樣式,即yyyy-MM-dd HH:mm:ss        objectMapper.setDateFormat(new SimpleDateFormat(DateTimeUtil.STANDARD_FORMAT));        //忽略 在json字串中存在,但是在java對象中不存在對應屬性的情況。防止錯誤        objectMapper.configure(DeserializationConfig.Feature.FAIL_ON_UNKNOWN_PROPERTIES,false);    }    public static <T> String obj2String(T obj){        if(obj == null){            return null;        }        try {            return obj instanceof String ? (String)obj :  objectMapper.writeValueAsString(obj);        } catch (Exception e) {            log.warn("Parse Object to String error",e);            return null;        }    }    public static <T> String obj2StringPretty(T obj){        if(obj == null){            return null;        }        try {            return obj instanceof String ? (String)obj :  objectMapper.writerWithDefaultPrettyPrinter().writeValueAsString(obj);        } catch (Exception e) {            log.warn("Parse Object to String error",e);            return null;        }    }    public static <T> T string2Obj(String str,Class<T> clazz){        if(StringUtils.isEmpty(str) || clazz == null){            return null;        }        try {            return clazz.equals(String.class)? (T)str : objectMapper.readValue(str,clazz);        } catch (Exception e) {            log.warn("Parse String to Object error",e);            return null;        }    }    public static <T> T string2Obj(String str, TypeReference<T> typeReference){        if(StringUtils.isEmpty(str) || typeReference == null){            return null;        }        try {            return (T)(typeReference.getType().equals(String.class)? str : objectMapper.readValue(str,typeReference));        } catch (Exception e) {            log.warn("Parse String to Object error",e);            return null;        }    }    public static <T> T string2Obj(String str,Class<?> collectionClass,Class<?>... elementClasses){        JavaType javaType = objectMapper.getTypeFactory().constructParametricType(collectionClass,elementClasses);        try {            return objectMapper.readValue(str,javaType);        } catch (Exception e) {            log.warn("Parse String to Object error",e);            return null;        }    }}

 

Java web 開發中幾個高可複用的類

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.