Skip to content

Load files in <import resource=... /> only once [SPR-1142] #5845

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

Closed
spring-projects-issues opened this issue Jul 15, 2005 · 11 comments
Closed
Labels
has: votes-jira Issues migrated from JIRA with more than 10 votes at the time of import in: core Issues in core modules (aop, beans, core, context, expression) status: bulk-closed An outdated, unresolved issue that's closed in bulk as part of a cleaning process type: enhancement A general enhancement

Comments

@spring-projects-issues
Copy link
Collaborator

spring-projects-issues commented Jul 15, 2005

Martin Zeltner opened SPR-1142 and commented

Example:

file1.xml:
<beans>
<import resource="classpath:common/common-config.xml"/>
...
</beans>

file2.xml:
<beans>
<import resource="classpath:common/common-config.xml"/>
...
</beans>

If I load now an application context which has "file1.xml" and "file2.xml" as config locations, the file "common-config.xml" will be loaded twice. I suggest to remember the url of already loaded config files.

Thanks,
Martin


Affects: 1.2.1

Attachments:

Issue Links:

67 votes, 52 watchers

@spring-projects-issues
Copy link
Collaborator Author

Sébastien Launay commented

Because this issue is opened for many years I was thinking of proposing a solution because our spring configuration uses lots of XML files decomposed with imports and lots of AOP configuration :) and computing unused bean definitions is expensive at runtime.

So here is a patch for loading application context resources only once against the trunk.
It contains:

  • modification to keep a list of previously imported resource URLs in order to know if this is an already imported resource (if this is the case it is ignored with an INFO log entry)
  • test cases
  • a paragraph in the reference documentation

This feature is enabled by setting the bean property importOnce to true on *XmlApplicationContext.
This property is false by default for backward compatibility purpose.

I do not know if this is interesting but I do not modified JavaConfig classes to reflect such behavior with @Import.

Let me know if this approach is right or if I need to go in another direction.

@spring-projects-issues
Copy link
Collaborator Author

Tim Ducheyne commented

Just a small remark about the patch:
I think it would be better to use URIs instead of URLs

There is a problem with the hashcode and equals implementation of URL
http://michaelscharf.blogspot.com/2006/11/javaneturlequals-and-hashcode-make.html

brgds,
Tim

@spring-projects-issues
Copy link
Collaborator Author

Felix Simmendinger commented

This behaviour is espacially then problematic, because BPP are executed multiple times if they are declared as anonymous beans or defined via a namespace eg. <context:property-placeholder ... . For the latter it is impossible to define an id. Since there are special beans that can be defined only once eg. the multipartresolver this problem means you cannot hide the multipartresolver in a xml file hierarchy as it may be loaded twice.

@spring-projects-issues
Copy link
Collaborator Author

Dennis Homann commented

This is a real pain and punishes people who modularize their application context in multiple smaller XML files.
Please consider fixing this issue in 3.1 instead of 3.2.

@spring-projects-issues
Copy link
Collaborator Author

Keith Donald commented

Can someone provide more info on why you would import the same file more than once? I'm curious what is trying to be accomplished where this comes up, as I've never encountered this myself in practice.

@spring-projects-issues
Copy link
Collaborator Author

spring-projects-issues commented Feb 19, 2011

Dale Wyttenbach commented

It typically happens indirectly:
A imports B imports C
A imports D imports C
It's an old problem, in C the #ifndef directive was used in similar situations.
I have opened a related issue #12263, which I think would make the log messages a lot easier
to interpret in these situations.

@spring-projects-issues
Copy link
Collaborator Author

Andy Schäfer commented

Some additional thoughts to the comment of Dale Wyttenbach in answer to Keith Donald:

In order to ensure, that C isn't loaded twice we import in the topmost application.spring.xml all configurations (A, B, C and D). So the import of C is done only there, nowhere else.
Problem solved but other problems arise with this approach:

  1. Design-flaw: dependencies between configurations aren't expressed explicitly

  2. Running Tests: In order to run tests concerning for example B we had to load the configuration of B and C. Assumed C gets a dependency to a new configuration-file E, ALL tests of A,B,C AND D had to be changed. Instead we load the complete application-context for our tests. But now D and A are unnecessarily loaded for our B-test -> turnaround time increases.

Maybe there are approaches better than the one I outlined (interested to hear of them), but this issue would be handy to solve the problem in a simple way:

  1. dependencies can be expressed explicitly (e.g. B imports C)
  2. Each test had to load only the configuration of it's own module - dependent configurations are loaded transparently

@spring-projects-issues
Copy link
Collaborator Author

Neha commented

Since this issue had been logged around 9 years back and is still unresolved, I was just wondering if there is some major reason for it?
We were thinking of including our own classes in our project to handle this problem, so wanted to know if there is possibility of some side-effects, before moving the code to production?

@spring-projects-issues
Copy link
Collaborator Author

Lucian Yao commented

Please fix this issue. I was blamed by the peers by using the import in lower-level modules to save a lot of time in config and deploy.

@spring-projects-issues spring-projects-issues added status: waiting-for-triage An issue we've not yet triaged or decided on type: enhancement A general enhancement has: votes-jira Issues migrated from JIRA with more than 10 votes at the time of import labels Jan 10, 2019
@spring-projects-issues spring-projects-issues removed the type: enhancement A general enhancement label Jan 11, 2019
@rstoyanchev rstoyanchev added status: bulk-closed An outdated, unresolved issue that's closed in bulk as part of a cleaning process and removed status: waiting-for-triage An issue we've not yet triaged or decided on labels Jan 11, 2019
@spring-projects-issues
Copy link
Collaborator Author

Bulk closing outdated, unresolved issues. Please, reopen if still relevant.

@sbrannen sbrannen changed the title Load files in <import resource=.../> only once [SPR-1142] Load files in <import resource=... /> only once [SPR-1142] Feb 21, 2023
@sbrannen
Copy link
Member

If you were following this issue, you may be interested in the following.

@sbrannen sbrannen added in: core Issues in core modules (aop, beans, core, context, expression) type: enhancement A general enhancement labels Feb 21, 2023
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
has: votes-jira Issues migrated from JIRA with more than 10 votes at the time of import in: core Issues in core modules (aop, beans, core, context, expression) status: bulk-closed An outdated, unresolved issue that's closed in bulk as part of a cleaning process type: enhancement A general enhancement
Projects
None yet
Development

No branches or pull requests

3 participants