@ConfigurationProperties: Difference between revisions

From NovaOrdis Knowledge Base
Jump to navigation Jump to search
No edit summary
Line 14: Line 14:
</syntaxhighlight>
</syntaxhighlight>


The prefix attribute defines the namespace for the configuration properties exposed by the component.
The 'prefix' attribute defines the namespace for the configuration properties exposed by the component.

Revision as of 22:02, 21 November 2018

Internal

Overview

@ConfigurationProperties is an annotation that, once placed on a bean, specifies that the properties of that bean ban be injected from properties present in the Spring environment.

@Component
@ConfigurationProperties(prefix = "playground.spring.pi")
public class ... {
}

The 'prefix' attribute defines the namespace for the configuration properties exposed by the component.