← All recipes
Moderne licensed

Add a spring configuration property

Recipe IDorg.openrewrite.java.spring.AddSpringProperty
Artifactorg.openrewrite.recipe:rewrite-spring

Add a spring configuration property to a configuration file if it does not already exist in that file.

Single recipeMSAL

Usage

You’ll need the Moderne CLI configured before running the command below.

mod run . --recipe org.openrewrite.java.spring.AddSpringProperty --recipe-option "property=management.metrics.enable.process.files" --recipe-option "value=true"

If the recipe isn’t available locally, install it with:

mod config recipes jar install org.openrewrite.recipe:rewrite-spring:6.36.0

Options

NameTypeDescription
propertyrequiredStringThe property key to add.
e.g. management.metrics.enable.process.files
valuerequiredStringThe value of the new property key.
e.g. true
commentStringA comment that will be added to the new property.
e.g. This is a comment
pathExpressionsListEach value in this list represents a glob expression that is used to match which files will be modified. If this value is not present, this recipe will query the execution context for reasonable defaults. ("**/application.yml", "**/application.yml", and "**/application.properties".
e.g. ["**/application.yml"]

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