Atul
Atul

Reputation: 1590

Spring Application Architecture Design

Environment :

Spring 4

Hibernate 4

MySQL

Spring MVC REST

Issue :

I am writing a simple REST based application for CRUD operations.

The architecture/components is below :

enter image description here

I have below design issues :

1. In Spring Application , the best practice is to have two separate contexts -

i) applicationContext : initialised through ContextLoaderListener (for servives abd daoLayerClasses)

ii) webApplicationContext : initialised through Dispather servlet (for Controllers/view Resolvers)

2. However I haven't seen any sample Spring REST based application using BOTH THE CONTEXTS above. Only Dispatcher servlet appraoch is used.

3. So , will creating two separate contexts for REST based application as shown in above architecture be an overkill and unnecessary ?

Or It is better to create two contexts separating SPRING REST layer in WebApplicationContext (@RestController) and ApplicationContext containing (@Services,@Repository)

Upvotes: 0

Views: 120

Answers (2)

John Scattergood
John Scattergood

Reputation: 1042

The answers to this question will be subjective, but as mentioned in other threads and in the Spring MVC docs two contexts are typical, but not the only way to do it.

I think the main reason is to separate them is when you have UI and APIs. They may depend on the same backend services, but probably shouldn't have co-mingled beans.

Upvotes: 0

Dave L.
Dave L.

Reputation: 9781

I think it is totally unnecessary to create separate contexts for your Controllers and Service/Repository classes unless you were thinking of having multiple Dispatchers or something like that. Generally you should keep it simple and have as few contexts as possible.

Upvotes: 1

Related Questions