com.godmonth.util.jackson.JacksonObjectFactoryBean Maven / Gradle / Ivy
package com.godmonth.util.jackson;
import java.io.IOException;
import org.apache.commons.io.IOUtils;
import org.apache.commons.lang3.Validate;
import org.slf4j.Logger;
import org.slf4j.LoggerFactory;
import org.springframework.beans.factory.FactoryBean;
import org.springframework.beans.factory.InitializingBean;
import org.springframework.beans.factory.annotation.Required;
import org.springframework.core.io.Resource;
import com.fasterxml.jackson.core.JsonParseException;
import com.fasterxml.jackson.core.type.TypeReference;
import com.fasterxml.jackson.databind.JsonMappingException;
import com.fasterxml.jackson.databind.ObjectMapper;
/**
* @author shenyue
*/
public class JacksonObjectFactoryBean implements FactoryBean, InitializingBean {
private static final Logger logger = LoggerFactory.getLogger(JacksonObjectFactoryBean.class);
private String json;
private Resource jsonResource;
private ObjectMapper objectMapper;
private Class objectType;
private TypeReference> typeReference;
private T object;
private boolean singleton = true;
@Override
public void afterPropertiesSet() throws JsonParseException, JsonMappingException, IOException {
if (json == null && jsonResource != null) {
json = IOUtils.toString(jsonResource.getInputStream(), "utf-8");
}
Validate.notBlank(json, "json is blank");
logger.trace("jsonResource:{},content:{}", jsonResource.getDescription(), json);
if (singleton) {
object = initialValue();
}
}
public void setJson(String json) {
this.json = json;
}
private T initialValue() throws JsonParseException, JsonMappingException, IOException {
if (typeReference != null) {
object = objectMapper.readValue(json, typeReference);
} else {
object = objectMapper.readValue(json, objectType);
}
return object;
}
@Override
public T getObject() throws Exception {
if (singleton) {
return object;
} else {
return initialValue();
}
}
@Override
public Class> getObjectType() {
return objectType;
}
@Override
public boolean isSingleton() {
return true;
}
@Required
public void setObjectMapper(ObjectMapper objectMapper) {
this.objectMapper = objectMapper;
}
@Required
public void setJsonResource(Resource jsonResource) {
this.jsonResource = jsonResource;
}
public void setObjectType(Class objectType) {
this.objectType = objectType;
}
public void setTypeReference(TypeReference> typeReference) {
this.typeReference = typeReference;
}
}