Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Support @PropertySource as an attribute in @Configuration #34680

Closed
brundabharadwaj opened this issue Mar 29, 2025 · 1 comment
Closed

Support @PropertySource as an attribute in @Configuration #34680

brundabharadwaj opened this issue Mar 29, 2025 · 1 comment
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

Comments

@brundabharadwaj
Copy link

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:

@Configuration
@PropertySource("classpath:application-custom.properties")
public class AppConfig {
}

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:

@Configuration(propertySource = "classpath:application-custom.properties")
public class AppConfig {
}

Benefits:

  • Reduces redundancy by allowing property source definitions within @Configuration.
  • Improves readability and maintainability.
  • Keeps @PropertySource optional for backward compatibility.

Alternative Considerations

  1. Backward Compatibility: The existing @PropertySource should still be supported for cases where multiple property sources are needed.
  2. Multiple Property Sources: If needed, the 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 🚀

@spring-projects-issues spring-projects-issues added the status: waiting-for-triage An issue we've not yet triaged or decided on label Mar 29, 2025
@sbrannen sbrannen added the in: core Issues in core modules (aop, beans, core, context, expression) label Mar 29, 2025
@sbrannen sbrannen changed the title Title: Support @PropertySource as an Attribute in @Configuration Support @PropertySource as an attribute in @Configuration Mar 29, 2025
@jhoeller
Copy link
Contributor

jhoeller commented Apr 2, 2025

I'm afraid that's not where we intend to take our design there. Generally, separate concerns are often modeled as separate annotations (in Spring and for example also in JPA), and PropertySource management is not directly connected to the @Configuration stereotype itself which is primarily about @Bean method semantics.

While I see your point as an alternative design approach, it isn't actually significantly more concise than a one-line declaration of both annotations either: @Configuration @PropertySource("classpath:application-custom.properties")

@jhoeller jhoeller closed this as not planned Won't fix, can't repro, duplicate, stale Apr 2, 2025
@jhoeller jhoeller added status: declined A suggestion or change that we don't feel we should currently apply and removed status: waiting-for-triage An issue we've not yet triaged or decided on labels Apr 2, 2025
@sbrannen sbrannen assigned sbrannen and unassigned sbrannen Apr 3, 2025
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
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
Projects
None yet
Development

No branches or pull requests

4 participants