What are the design patterns which used in Spring framework?
|
There are loads of different design patterns used, but there are a few obvious ones:
Update following comments: For MVC, you might want to read the MVC Reference Some obvious patterns in use in MVC:
|
||||
|
|
|
And of course dependency injection, or IoC (inversion of control), which is central to the whole BeanFactory/ApplicationContext stuff. |
|||
|
|
|
The DI thing actually is some kind of strategy pattern. Whenever you want to be some logic/implementation exchangeable you typically find an interface and an appropriate setter method on the host class to wire your custom implementation of that interface. |
|||
|
|
|
Spring is a collection of best-practise API patterns, you can write up a shopping list of them as long as your arm. The way that the API is designed encourages you (but doesn't force you) to follow these patterns, and half the time you follow them without knowing you are doing so. |
|||
|
|
|
Factory Method patter: BeanFactory for creating instance of an object Singleton : instance type can be singleton for a context Prototype : instance type can be prototype. Builder pattern: you can also define a method in a class who will be responsible for creating complex instance. |
|||
|
|
|
Spring container generates bean objects depending on the bean scope (singleton, prototype etc..). So this looks like implementing Abstract Factory pattern. In the Spring's internal implementation, I am sure each scope should be tied to specific factory kind class. |
|||
|
|
|
Service Locator Pattern - ServiceLocatorFactoryBean keeps information of all the beans in the context. When client code asks for a service (bean) using name, it simply locates that bean in the context and returns it. Client code does not need to write spring related code to locate a bean. |
|||
|
|
|
Factory pattern is also used for loading beans through BeanFactory and Application context. |
|||
|
|