Support @PropertySource
as an attribute in @Configuration
#34680
Labels
in: core
Issues in core modules (aop, beans, core, context, expression)
status: declined
A suggestion or change that we don't feel we should currently apply
Enhancement request:
Proposal: Support
@PropertySource
as an Attribute of@Configuration
Background
Currently, in Spring, we specify external property sources using
@PropertySource
separately from@Configuration
. This means that when defining a configuration class, we must explicitly use@PropertySource
to load properties from an external file.Example:
However, it would be more intuitive and concise if we could define property sources directly as an attribute of
@Configuration
, making the configuration more self-contained.Proposal
Introduce an optional attribute
propertySource
in@Configuration
to specify external property files.Example of the proposed approach:
Benefits:
@Configuration
.@PropertySource
optional for backward compatibility.Alternative Considerations
@PropertySource
should still be supported for cases where multiple property sources are needed.propertySource
attribute could accept an array to support multiple files.Would love to hear thoughts on this proposal and whether this would be a valuable addition and I am open to contribute 🚀
The text was updated successfully, but these errors were encountered: