本文整理匯總了Java中com.fasterxml.jackson.databind.SerializationFeature.WRITE_DATES_AS_TIMESTAMPS屬性的典型用法代碼示例。如果您正苦於以下問題:Java SerializationFeature.WRITE_DATES_AS_TIMESTAMPS屬性的具體用法?Java SerializationFeature.WRITE_DATES_AS_TIMESTAMPS怎麽用?Java SerializationFeature.WRITE_DATES_AS_TIMESTAMPS使用的例子?那麽, 這裏精選的屬性代碼示例或許可以為您提供幫助。您也可以進一步了解該屬性所在類com.fasterxml.jackson.databind.SerializationFeature
的用法示例。
在下文中一共展示了SerializationFeature.WRITE_DATES_AS_TIMESTAMPS屬性的1個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的Java代碼示例。
示例1: JsonMapper
public JsonMapper() {
// calls the default constructor
super();
// configures ISO8601 formatter for date without time zone
// the used format is 'yyyy-MM-dd'
super.setDateFormat(new SimpleDateFormat(FMT_ISO_LOCAL_DATE));
// enforces to skip null and empty values in the serialized JSON output
super.setSerializationInclusion(JsonInclude.Include.NON_EMPTY);
// enforces to skip null references in the serialized output of Map
super.configure(SerializationFeature.WRITE_NULL_MAP_VALUES, false);
// enables serialization failures, when mapper encounters unknown properties names
super.configure(DeserializationFeature.FAIL_ON_UNKNOWN_PROPERTIES, true);
// configures the format to prevent writing of the serialized output for java.util.Date
// instances as timestamps. any date should be written in ISO format
super.configure(SerializationFeature.WRITE_DATES_AS_TIMESTAMPS, false);
}