Copy property value
Recipe ID
org.openrewrite.properties.CopyValueArtifact
org.openrewrite:rewrite-propertiesCopies a property value from one key to another. The existing key/value pair remains unaffected by this change. If the destination key already exists, its value will be replaced. By default, creates the destination key if it does not exist.
Usage
You’ll need the Moderne CLI configured before running the command below.
mod run . --recipe org.openrewrite.properties.CopyValue --recipe-option "oldPropertyKey=app.source.property" --recipe-option "newPropertyKey=app.destination.property"If the recipe isn’t available locally, install it with:
mod config recipes jar install org.openrewrite:rewrite-properties:8.88.0Options
| Name | Type | Description |
|---|---|---|
oldPropertyKeyrequired | String | The property key to copy the value from. Supports glob patterns. e.g. app.source.property |
oldFilePath | String | The file path to the properties file to copy the value from. If null then the value will be copied from any properties file it appears within.e.g. src/main/resources/application.properties |
newPropertyKeyrequired | String | The property key to copy the value to. e.g. app.destination.property |
newFilePath | String | The file path to the properties file to copy the value to. If null then the value will be copied only into the same file it was found in.e.g. src/main/resources/application.properties |
createNewKeys | Boolean | When the destination key does _not_ already exist, create it. Default is true. |
relaxedBinding | Boolean | Whether to match the oldPropertyKey using relaxed binding rules. Default is true. Set to false to use exact matching. |
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