java - How advisable is migrating to spring framework? -


We currently have a framework (a customized MVC pattern in Flex and command pattern in Java) which is our use case Works well with We are thinking about the migration of our servers to the spring structure, how is this advice? Our Java framework is also loose paired. But I see a lot of procrastination in spring with some concepts, relying on dependency injection and control (which I still need to get some ideas). Basically what kind of use-case people use spring. is? .If it is advisable to do well I also know where to start from.

Using a frame like spring or Guice helps keep your applications organized and time Can be coupled with loose. The dependency injection framework essentially removes the object construction from any object, so that instead of any architectural concerns it can be focused on what needs to be done.

Another advantage to using dependency injection is that your application is no longer concerns about the creation of the object, in this way you can freely examine every part of the application Can build.

I strongly suggest reading the book of Sanjeev Prasanna.

Comments