I’m currently trying to get into the Java EE development with the Spring framework. As I’m new to Spring, it is hard to imaging how a good running project should start off.
Do you have any best practices, tipps or major DO NOTs for a starter? How did you start with Spring – big project or small tutorial-like applications? Which technology did you use right away: AOP, complex Hibernate…
Small tip – I’ve found it helpful to modularize and clearly label my Spring xml context files based on application concern. Here’s an example for a web app I worked on:
MyProject / src / main / resources / spring /datasource.xmlbeans.persistence.xmlbeans.services.xmlbeans.This list is neither perfect nor exhaustive, but I hope it illustrates the point. Choose whatever naming strategy and granularity works best for you.
In my (limited) experience, I’ve seen this approach yeild the following benefits:
Clearer architecture
Clearly named context files gives those unfamiliar with your project structure a reasonable place to start looking for bean definitions. Can make detecting circular/unwanted dependencies a little easier.
Helps domain design
If you want to add a bean definition, but it doesn’t fit well in any of your context files, perhaps there’s a new concept or concern emerging? Examples:
services.xml, or put them in their owntransactionPolicy.xml? Talk it over with your team. Should your transaction policy be pluggable?controllers.xmlfile, or create asecurity.xmlcontext file? Do you have different security requirements for different deployments/environments?Integration testing
You can wire up a subset of your application for integration testing (ex: given the above files, to test the database you need to create only
datasource.xmlandpersistence.xmlbeans).Specifically, you can annotate an integration test class as such:
Works well with Spring IDE’s Beans Graph
Having lots of focused and well-named context files makes it easy to create custom BeansConfigSets to visualize the layers of your app using Spring IDE’s Beans Graph. I’ve used this before to give new team members a high-level overview of our application’s organization.