Skip to main content

You are not logged in. Your edit will be placed in a queue until it is peer reviewed.

We welcome edits that make the post easier to understand and more valuable for readers. Because community members review edits, please try to make the post substantially better than how you found it, for example, by fixing grammar or adding additional resources and hyperlinks.

2
  • 3
    Having a 4000 line configuration file isn't the fault of dependency injection... there's plenty of ways to fix it: modularise the file into multiple smaller files, switch to annotation based injection, use JavaConfig files instead of xml. Basically, the problem you are experiencing is a failure to manage the complexity and size of your application's dependency injection needs. Commented Sep 4, 2017 at 23:35
  • 1
    @Maybe_Factor TL;DR split the project into smaller components. Commented Sep 5, 2017 at 7:11