Remove redundant Jackson 3 feature flag configurations
Recipe ID
org.openrewrite.java.jackson.RemoveRedundantFeatureFlagsArtifact
org.openrewrite.recipe:rewrite-jacksonRemove ObjectMapper feature flag configurations that set values to their new Jackson 3 defaults. For example, disable(DeserializationFeature.FAIL_ON_UNKNOWN_PROPERTIES) and configure(DeserializationFeature.FAIL_ON_UNKNOWN_PROPERTIES, false) are redundant since this is now disabled by default in Jackson 3.
Usage
You’ll need the Moderne CLI configured before running the command below.
mod run . --recipe org.openrewrite.java.jackson.RemoveRedundantFeatureFlags --recipe-option "featureName=MapperFeature.SORT_PROPERTIES_ALPHABETICALLY" --recipe-option "newDefaultValue=true"If the recipe isn’t available locally, install it with:
mod config recipes jar install org.openrewrite.recipe:rewrite-jackson:1.28.0Options
| Name | Type | Description |
|---|---|---|
featureNamerequired | String | The fully qualified feature flag name that has a new default in Jackson 3. Format: ClassName.FEATURE_NAME (e.g., MapperFeature.SORT_PROPERTIES_ALPHABETICALLY).e.g. MapperFeature.SORT_PROPERTIES_ALPHABETICALLY |
newDefaultValuerequired | Boolean | The new default boolean value for this feature flag in Jackson 3. e.g. true |
Data tables
Structured output this recipe can produce.
- Source files that had resultsSource files that were modified by the recipe run.
org.openrewrite.table.SourcesFileResults - Source files that had search resultsSearch results that were found during the recipe run.
org.openrewrite.table.SearchResults - Source files that errored on a recipeThe details of all errors produced by a recipe run.
org.openrewrite.table.SourcesFileErrors - Recipe performanceStatistics used in analyzing the performance of recipes.
org.openrewrite.table.RecipeRunStats