-
Notifications
You must be signed in to change notification settings - Fork 134
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
[FLINK-33191][Connector/Kafka] Remove dependency on Flink Shaded
- Loading branch information
1 parent
26ab532
commit e9d3089
Showing
5 changed files
with
78 additions
and
20 deletions.
There are no files selected for viewing
49 changes: 49 additions & 0 deletions
49
...ector-kafka/src/main/java/org/apache/flink/connector/kafka/util/JacksonMapperFactory.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,49 @@ | ||
/* | ||
* Licensed to the Apache Software Foundation (ASF) under one or more | ||
* contributor license agreements. See the NOTICE file distributed with | ||
* this work for additional information regarding copyright ownership. | ||
* The ASF licenses this file to You under the Apache License, Version 2.0 | ||
* (the "License"); you may not use this file except in compliance with | ||
* the License. You may obtain a copy of the License at | ||
* | ||
* http://www.apache.org/licenses/LICENSE-2.0 | ||
* | ||
* Unless required by applicable law or agreed to in writing, software | ||
* distributed under the License is distributed on an "AS IS" BASIS, | ||
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. | ||
* See the License for the specific language governing permissions and | ||
* limitations under the License. | ||
*/ | ||
|
||
package org.apache.flink.connector.kafka.util; | ||
|
||
import com.fasterxml.jackson.core.JsonFactory; | ||
import com.fasterxml.jackson.databind.ObjectMapper; | ||
import com.fasterxml.jackson.databind.SerializationFeature; | ||
import com.fasterxml.jackson.datatype.jdk8.Jdk8Module; | ||
import com.fasterxml.jackson.datatype.jsr310.JavaTimeModule; | ||
|
||
/** Factory for Jackson mappers. */ | ||
public final class JacksonMapperFactory { | ||
|
||
public static ObjectMapper createObjectMapper() { | ||
final ObjectMapper objectMapper = new ObjectMapper(); | ||
registerModules(objectMapper); | ||
return objectMapper; | ||
} | ||
|
||
public static ObjectMapper createObjectMapper(JsonFactory jsonFactory) { | ||
final ObjectMapper objectMapper = new ObjectMapper(jsonFactory); | ||
registerModules(objectMapper); | ||
return objectMapper; | ||
} | ||
|
||
private static void registerModules(ObjectMapper mapper) { | ||
mapper.registerModule(new JavaTimeModule()) | ||
.registerModule(new Jdk8Module().configureAbsentsAsNulls(true)) | ||
.disable(SerializationFeature.WRITE_DURATIONS_AS_TIMESTAMPS) | ||
.disable(SerializationFeature.WRITE_DATES_AS_TIMESTAMPS); | ||
} | ||
|
||
private JacksonMapperFactory() {} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters