Spring context files organization and best practices - Stack Overflow most recent 30 from stackoverflow.com 2009-12-03T18:38:50Z http://stackoverflow.com/feeds/question/431107 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/431107/spring-context-files-organization-and-best-practices 4 Spring context files organization and best practices LiorH 2009-01-10T15:23:31Z 2009-06-17T05:12:23Z <p>We have started using Spring framework in my project. After becoming acquainted with the basic features (IoC) we have started using spring aop and spring security as well.</p> <p>The problem is that we now have more than 8 different context files and I feel we didn't give enough thought for the organization of those files and their roles. New files were introduced as the project evolved. We have different context files for: metadata, aop, authorization, services, web resources (it's a RESTful application). So when a developer wants to add a new bean it's not always clear in which file he should add it. We need methodology.</p> <p>The question:</p> <p>Is there a best practice for spring files organization?</p> <p>Should the context files encapsulate layers (DAL , Business Logic, Web) or use cases ? or Flows? </p> http://stackoverflow.com/questions/431107/spring-context-files-organization-and-best-practices/431132#431132 3 Answer by kgiannakakis for Spring context files organization and best practices kgiannakakis 2009-01-10T15:38:55Z 2009-01-10T15:38:55Z <p>Spring context files contain definitions of beans, so I think that it is best to follow OO principle and structure them the same way you structure your classes in packages. We usually create packages to encapsulate a set of classes that work together to solve a specific problem. A package usually encapsulates a horizontal layer (database layer, middleware, business logic or part of them). There are occasions that a package contain classes that correspond to a horizontal layer (use case or flow as you've mentioned). In general I would recommend to create one context file for every package or set of packages. When you add a new bean, add it to the context file that corresponds to the package of the class.</p> <p>Of course this shouldn't be a very strict rule, as there might be cases that it would beneficial to follow another practice.</p> http://stackoverflow.com/questions/431107/spring-context-files-organization-and-best-practices/431337#431337 0 Answer by duffymo for Spring context files organization and best practices duffymo 2009-01-10T17:04:43Z 2009-01-10T17:04:43Z <p>I find that I break them out by layer. </p> <p>When I write unit tests for each layer I override the production context with values pertinent for the tests.</p> http://stackoverflow.com/questions/431107/spring-context-files-organization-and-best-practices/431352#431352 7 Answer by krosenvold for Spring context files organization and best practices krosenvold 2009-01-10T17:14:33Z 2009-01-10T17:20:13Z <p>If you're still reasonably early in the project I'd advice you strongly to look at annotation-driven configuration. After converting to annotations we only have 1 xml file with definitions and it's really quite small, and this is a large project. Annotation driven configuration puts focus on your implementation instead of the xml. It also more or less removes the fairly redundant abstraction layer which is the spring "bean name". It turns out the bean name exists mostly <em>because</em> of xml (The bean name still exists in annotation config but is irrelevant in most cases). After doing this switch on a large project everyone's 100% in agreement that it's a <em>lot</em> better and we also have fairly decent evidence that it's a more productive environment. </p> <p>I'd really recommend <em>anyone</em> who's using spring to switch to annotations. It's possible to mix them as well. If you need transitional advice I suppose it's easy to ask on SO ;)</p> http://stackoverflow.com/questions/431107/spring-context-files-organization-and-best-practices/431422#431422 0 Answer by cliff.meyers for Spring context files organization and best practices cliff.meyers 2009-01-10T17:51:36Z 2009-01-10T17:51:36Z <p>Breaking the config into separate files is useful to me in terms of testing. On a small project, I'll put Spring Security config into "securityContext.xml" and the rest of my beans into "applicationContext.xml." Then while running integration tests, it's easy to enable or disable security simple by choosing whether to include securityContext.xml. This almost resembles AOP in a way, in that you add more functionality to the application by choosing whether to include particular files.</p> http://stackoverflow.com/questions/431107/spring-context-files-organization-and-best-practices/431754#431754 2 Answer by Domchi for Spring context files organization and best practices Domchi 2009-01-10T21:05:41Z 2009-01-10T21:05:41Z <p>Start with applicationContext.xml and separate when there's a lot of beans which have something in common.</p> <p>To give you some idea of a possible setup, in the application I'm currently working on, here's what I have in server:</p> <ul> <li>applicationContext.xml</li> <li>securityContext.xml</li> <li>schedulingContext.xml</li> <li>dataSourcecontext.xml</li> <li>spring-ws-servlet.xml (Spring Web Services related beans)</li> </ul> <p>For GUI clients, since this project has several, there is one folder with shared context files, and on top of that, each client has its own context folder. Shared context files:</p> <ul> <li>sharedMainApplicationContext.xml</li> <li>sharedGuiContext.xml</li> <li>sharedSecurityContext.xml</li> </ul> <p>App-specific files:</p> <ul> <li>mainApplicationContext.xml and </li> <li>guiContext.xml and </li> <li>commandsContext.xml (menu structure)</li> <li>sharedBusinessLayerContext.xml (beans for connecting to server)</li> </ul> http://stackoverflow.com/questions/431107/spring-context-files-organization-and-best-practices/1005220#1005220 0 Answer by Jase for Spring context files organization and best practices Jase 2009-06-17T05:12:23Z 2009-06-17T05:12:23Z <p>yep - split on similar roles for the beans therein. As for annotations, I believe they "may" have a small role to play, perhaps with transaction definitions, but otherwise they just forever bind your code and you might as well be adding spring (or any other 3rd party) references directly everywhere. For me annotations=shortcut and technical debt. They aren't externally configurable, so its not trivial to rewire, or unwire your code, and limits reuse. A given bean is forever stuck with its annotated dependencies and configuration so cant be used by multiple projects/processes simultaneously with different wiring and config. just my 2 cents.</p>