类com.fasterxml.jackson.annotation.JsonCreator.Mode源码实例Demo

下面列出了怎么用com.fasterxml.jackson.annotation.JsonCreator.Mode的API类实例代码及写法,或者点击链接到github查看源代码。

源代码1 项目: hawkular-metrics   文件: TagRequest.java
@JsonCreator(mode = Mode.PROPERTIES)
public TagRequest(
        @JsonProperty("tags")
        Map<String, String> tags,
        @JsonProperty("start")
        Long start,
        @JsonProperty("end")
        Long end,
        @JsonProperty("timestamp")
        Long timestamp
) {
    this.tags = tags == null ? emptyMap() : unmodifiableMap(tags);
    this.start = start;
    this.end = end;
    this.timestamp = timestamp;
}
 
源代码2 项目: hawkular-metrics   文件: MixedMetricsRequest.java
@JsonCreator(mode = Mode.PROPERTIES)
public MixedMetricsRequest(
        @JsonProperty("gauges")
        List<Metric<Double>> gauges,
        @JsonProperty("availabilities")
        List<Metric<AvailabilityType>> availabilities,
        @JsonProperty("counters")
        List<Metric<Long>> counters,
        @JsonProperty("strings")
        List<Metric<String>> strings
) {
    this.gauges = gauges == null ? emptyList() : unmodifiableList(gauges);
    this.availabilities = availabilities == null ? emptyList() : unmodifiableList(availabilities);
    this.counters = counters == null ? emptyList() : unmodifiableList(counters);
    this.strings = strings == null ? emptyList() : unmodifiableList(strings);
}
 
源代码3 项目: lams   文件: BasicDeserializerFactory.java
/**
 * @since 2.9
 */
protected boolean _hasCreatorAnnotation(DeserializationContext ctxt,
        Annotated ann) {
    AnnotationIntrospector intr = ctxt.getAnnotationIntrospector();
    if (intr != null) {
        JsonCreator.Mode mode = intr.findCreatorAnnotation(ctxt.getConfig(), ann);
        return (mode != null) && (mode != JsonCreator.Mode.DISABLED); 
    }
    return false;
}
 
@Bean
ObjectMapper jacksonObjectMapper() {

	ObjectMapper mapper = new ObjectMapper();

	mapper.configure(DeserializationFeature.FAIL_ON_UNKNOWN_PROPERTIES, false);
	mapper.setSerializationInclusion(Include.NON_NULL);
	mapper.registerModule(new ParameterNamesModule(Mode.PROPERTIES));
	mapper.registerModule(new SyntheticLambdaFactoryMethodIgnoringModule());

	return mapper;
}
 
源代码5 项目: hawkular-metrics   文件: TenantDefinition.java
@JsonCreator(mode = Mode.PROPERTIES)
public TenantDefinition(
        @JsonProperty("id")
        String id,
        @JsonProperty("retentions")
        @JsonDeserialize(keyUsing = MetricTypeKeyDeserializer.class)
        Map<MetricType<?>, Integer> retentionSettings) {
    checkArgument(id != null, "Tenant id is null");
    this.id = id;
    this.retentionSettings = retentionSettings == null ? emptyMap() : unmodifiableMap(retentionSettings);
}
 
源代码6 项目: hawkular-metrics   文件: Metric.java
@SuppressWarnings("unchecked")
@JsonCreator(mode = Mode.PROPERTIES)
public Metric(
        @JsonProperty("id")
        String id,
        @JsonProperty(value = "tags")
        Map<String, String> tags,
        @JsonProperty("dataRetention")
        Integer dataRetention,
        @JsonProperty("type")
        @JsonDeserialize(using = MetricTypeDeserializer.class)
        MetricType<T> type,
        @JsonProperty("data")
        List<DataPoint<T>> data,
        @JsonProperty(value="tenantId", defaultValue="")
        String tenantId
) {
    checkArgument(id != null, "Metric id is null");

    if (type == null) {
        type = MetricType.UNDEFINED;
    }

    if (tenantId == null) {
        tenantId = "";
    }

    this.id = new MetricId<T>(tenantId, type, id);
    this.tags = tags == null ? emptyMap() : unmodifiableMap(tags);
    this.dataRetention = dataRetention;
    this.dataPoints = data == null || data.isEmpty() ? emptyList() : unmodifiableList(data);
    this.minTimestamp = this.maxTimestamp = null;
}
 
源代码7 项目: xyz-hub   文件: LazyParsable.java
@JsonCreator(mode = Mode.DELEGATING)
public LazyParsable(String valueString) {
  this.valueString = valueString;
}
 
 类方法
 同包方法