vote up 4 vote down star
2

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.

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.

The question:

Is there a best practice for spring files organization?

Should the context files encapsulate layers (DAL , Business Logic, Web) or use cases ? or Flows?

flag

64% accept rate

6 Answers

vote up 7 vote down check

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 because 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 lot better and we also have fairly decent evidence that it's a more productive environment.

I'd really recommend anyone 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 ;)

link|flag
Very good advice. I'm still stuck in the XML mode, unfortunately. Old habits die hard. Another typically good comment. I look forward to your posts. – duffymo Jan 10 at 17:20
Thanks ;) If someone asks I think I should be able to show that you can get started with annotations easily and with little pain. It's really a joy to work with. Blows some life into java and spring. – krosenvold Jan 10 at 17:37
I think that annotations pollute the source files. Also, you need to modify the source in order to change the configuration (to replace a bean with a mock object for a quick test for example). Am I missing something? Perhaps I need to ask this as a question. – kgiannakakis Jan 10 at 17:44
Yes you are missing all the fun bits. How to organize tests in an annotation driven environment is really a different question than how to convert to annotations ;) Testing is even more beautiful. – krosenvold Jan 10 at 18:41
Thanks, I'll look into the annotation driven strategy as you suggested. – LiorH Jan 11 at 6:33
vote up 0 vote down

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.

link|flag
vote up 2 vote down

Start with applicationContext.xml and separate when there's a lot of beans which have something in common.

To give you some idea of a possible setup, in the application I'm currently working on, here's what I have in server:

  • applicationContext.xml
  • securityContext.xml
  • schedulingContext.xml
  • dataSourcecontext.xml
  • spring-ws-servlet.xml (Spring Web Services related beans)

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:

  • sharedMainApplicationContext.xml
  • sharedGuiContext.xml
  • sharedSecurityContext.xml

App-specific files:

  • mainApplicationContext.xml and
  • guiContext.xml and
  • commandsContext.xml (menu structure)
  • sharedBusinessLayerContext.xml (beans for connecting to server)
link|flag
vote up 0 vote down

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.

link|flag
vote up 0 vote down

I find that I break them out by layer.

When I write unit tests for each layer I override the production context with values pertinent for the tests.

link|flag
vote up 3 vote down

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.

Of course this shouldn't be a very strict rule, as there might be cases that it would beneficial to follow another practice.

link|flag
would you separate aop or authorization context from their business logic? – LiorH Jan 10 at 15:52
I would prefer to have a security.xml file to hold these beans. In a small to a medium project I believe this is better. Perhaps for larger projects this is not appropriate. – kgiannakakis Jan 10 at 17:41

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.