本文整理汇总了Java中com.fasterxml.jackson.datatype.joda.JodaModule.addSerializer方法的典型用法代码示例。如果您正苦于以下问题:Java JodaModule.addSerializer方法的具体用法?Java JodaModule.addSerializer怎么用?Java JodaModule.addSerializer使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类com.fasterxml.jackson.datatype.joda.JodaModule
的用法示例。
在下文中一共展示了JodaModule.addSerializer方法的10个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Java代码示例。
示例1: buildWebServices
import com.fasterxml.jackson.datatype.joda.JodaModule; //导入方法依赖的package包/类
/**
* Build the web services to use and assign them to the application state.
*/
protected void buildWebServices() {
// Build an ObjectMapper for everyone to use, since they are heavy-weight
ObjectMapper mapper = new ObjectMapper();
JodaModule jodaModule = new JodaModule();
jodaModule.addSerializer(Interval.class, new ToStringSerializer());
mapper.registerModule(jodaModule);
// This alternate switched implementation approach is not really used anywhere, should be split off into a
// separate subclass if needed
if (state.webService == null) {
state.webService = useTestWebService ?
new TestDruidWebService("Test UI WS") :
new AsyncDruidWebServiceImpl(DruidClientConfigHelper.getServiceConfig(), mapper);
}
if (state.metadataWebService == null) {
state.metadataWebService = (useTestWebService) ?
new TestDruidWebService("Test Metadata WS") :
new AsyncDruidWebServiceImpl(DruidClientConfigHelper.getMetadataServiceConfig(), mapper);
}
}
示例2: jacksonJodaModule
import com.fasterxml.jackson.datatype.joda.JodaModule; //导入方法依赖的package包/类
@Bean
public JodaModule jacksonJodaModule() {
JodaModule module = new JodaModule();
module.addSerializer(DateTime.class, new CustomDateTimeSerializer());
module.addDeserializer(DateTime.class, new CustomDateTimeDeserializer());
module.addSerializer(LocalDate.class, new CustomLocalDateSerializer());
module.addDeserializer(LocalDate.class, new ISO8601LocalDateDeserializer());
return module;
}
示例3: jacksonJodaModule
import com.fasterxml.jackson.datatype.joda.JodaModule; //导入方法依赖的package包/类
@Bean
public JodaModule jacksonJodaModule() {
JodaModule module = new JodaModule();
DateTimeFormatterFactory formatterFactory = new DateTimeFormatterFactory();
formatterFactory.setIso(DateTimeFormat.ISO.DATE);
module.addSerializer(DateTime.class, new DateTimeSerializer(
new JacksonJodaFormat(formatterFactory.createDateTimeFormatter()
.withZoneUTC())));
return module;
}
示例4: convertObjectToJsonBytes
import com.fasterxml.jackson.datatype.joda.JodaModule; //导入方法依赖的package包/类
/**
* Convert an object to JSON byte array.
*
* @param object
* the object to convert
* @return the JSON byte array
* @throws IOException
*/
public static byte[] convertObjectToJsonBytes(Object object)
throws IOException {
ObjectMapper mapper = new ObjectMapper();
mapper.setSerializationInclusion(JsonInclude.Include.NON_NULL);
JodaModule module = new JodaModule();
DateTimeFormatterFactory formatterFactory = new DateTimeFormatterFactory();
formatterFactory.setIso(DateTimeFormat.ISO.DATE);
module.addSerializer(DateTime.class, new DateTimeSerializer(
new JacksonJodaFormat(formatterFactory.createDateTimeFormatter()
.withZoneUTC())));
mapper.registerModule(module);
return mapper.writeValueAsBytes(object);
}
示例5: jacksonJodaModule
import com.fasterxml.jackson.datatype.joda.JodaModule; //导入方法依赖的package包/类
@Bean
public JodaModule jacksonJodaModule() {
JodaModule module = new JodaModule();
DateTimeFormatterFactory formatterFactory = new DateTimeFormatterFactory();
formatterFactory.setIso(DateTimeFormat.ISO.DATE);
module.addSerializer(DateTime.class, new DateTimeSerializer(
new JacksonJodaDateFormat(formatterFactory.createDateTimeFormatter().withZoneUTC())));
return module;
}
示例6: ObjectMappersSuite
import com.fasterxml.jackson.datatype.joda.JodaModule; //导入方法依赖的package包/类
/**
* No-arg constructor.
*/
public ObjectMappersSuite() {
jsonMapper = new ObjectMapper();
csvMapper = new CsvMapper();
JodaModule jodaModule = new JodaModule();
jodaModule.addSerializer(Interval.class, new ToStringSerializer());
jodaModule.setMixInAnnotation(ShardSpec.class, ShardSpecMixIn.class);
jsonMapper.registerModule(jodaModule);
jsonMapper.registerModule(new Jdk8Module().configureAbsentsAsNulls(false));
jsonMapper.registerModule(new AfterburnerModule());
}
示例7: convertObjectToJsonBytes
import com.fasterxml.jackson.datatype.joda.JodaModule; //导入方法依赖的package包/类
/**
* Convert an object to JSON byte array.
*
* @param object
* the object to convert
* @return the JSON byte array
* @throws IOException
*/
public static byte[] convertObjectToJsonBytes(Object object)
throws IOException {
ObjectMapper mapper = new ObjectMapper();
mapper.setSerializationInclusion(JsonInclude.Include.NON_NULL);
JodaModule module = new JodaModule();
module.addSerializer(DateTime.class, new CustomDateTimeSerializer());
module.addSerializer(LocalDate.class, new CustomLocalDateSerializer());
mapper.registerModule(module);
return mapper.writeValueAsBytes(object);
}
示例8: jacksonJodaModule
import com.fasterxml.jackson.datatype.joda.JodaModule; //导入方法依赖的package包/类
@Bean
public JodaModule jacksonJodaModule() {
JodaModule module = new JodaModule();
DateTimeFormatterFactory formatterFactory = new DateTimeFormatterFactory();
formatterFactory.setIso(DateTimeFormat.ISO.DATE);
module.addSerializer(DateTime.class, new DateTimeSerializer(
new JacksonJodaDateFormat(formatterFactory.createDateTimeFormatter()
.withZoneUTC())));
return module;
}
示例9: convertObjectToJsonBytes
import com.fasterxml.jackson.datatype.joda.JodaModule; //导入方法依赖的package包/类
/**
* Convert an object to JSON byte array.
*
* @param object the object to convert
* @return the JSON byte array
* @throws IOException
*/
public static byte[] convertObjectToJsonBytes(Object object)
throws IOException {
ObjectMapper mapper = new ObjectMapper();
mapper.setSerializationInclusion(JsonInclude.Include.NON_NULL);
JodaModule module = new JodaModule();
module.addSerializer(DateTime.class, new CustomDateTimeSerializer());
module.addSerializer(LocalDate.class, new CustomLocalDateSerializer());
mapper.registerModule(module);
return mapper.writeValueAsBytes(object);
}
示例10: performance
import com.fasterxml.jackson.datatype.joda.JodaModule; //导入方法依赖的package包/类
@Test
public void performance() {
final ObjectMapper mapper = new ObjectMapper();
mapper.registerModule( new Jdk8Module() );
final JodaModule module = new JodaModule();
module.addDeserializer( DateTime.class, forType( DateTime.class ) );
module.addSerializer( DateTime.class, new DateTimeSerializer( jodaDateFormat, 0 ) );
mapper.registerModule( module );
mapper.enable( DeserializationFeature.USE_LONG_FOR_INTS );
mapper.disable( DeserializationFeature.FAIL_ON_UNKNOWN_PROPERTIES );
mapper.disable( SerializationFeature.WRITE_DATES_AS_TIMESTAMPS );
mapper.setVisibility( PropertyAccessor.FIELD, JsonAutoDetect.Visibility.ANY );
mapper.setSerializationInclusion( JsonInclude.Include.NON_NULL );
mapper.registerModule( new OapJsonModule() );
benchmark( "mapParser-jackson", 5000,
() -> mapper.writeValueAsString( mapper.readValue( yearJson, Map.class ) ) ).run();
final ObjectMapper mapper2 = new ObjectMapper();
mapper2.registerModule( new Jdk8Module() );
mapper2.registerModule( module );
mapper2.enable( DeserializationFeature.USE_LONG_FOR_INTS );
mapper2.disable( DeserializationFeature.FAIL_ON_UNKNOWN_PROPERTIES );
mapper2.disable( SerializationFeature.WRITE_DATES_AS_TIMESTAMPS );
mapper2.setVisibility( PropertyAccessor.FIELD, JsonAutoDetect.Visibility.ANY );
mapper2.setSerializationInclusion( JsonInclude.Include.NON_NULL );
mapper2.registerModule( new OapJsonModule() );
mapper2.registerModule( new AfterburnerModule() );
benchmark( "mapParser-jackson2", 5000,
() -> mapper2.writeValueAsString( mapper2.readValue( yearJson, Map.class ) ) ).run();
}