Book Image

Learning Modular Java Programming

By : Tejaswini Mandar Jog
Book Image

Learning Modular Java Programming

By: Tejaswini Mandar Jog

Overview of this book

Modular programming means dividing an application into small parts and then developing it. It is an approach taken by developers to build applications and helps them add efficiency in their development process, thus making it more effective. The book starts with the fundamentals of Modular Programming. Then we move on to the actual implementation, where we teach developers how to divide an application into different modules or layers (such as presentation, execution, security, lifecycle, services, and so on) for better management. Once readers are well-versed in these modules and their development, the book shows how to create bindings in order to join these different modules and form a complete application. Next, the readers will learn how to manage these modules through dependency injection. Later, we move on to testing; readers will learn how to test the different modules of an application. The book ends by teaching readers how to maintain different versions of their application and how to modify it. By the end of the book, readers will have a good understanding of modular programming and will be able to use it to build applications with Java.
Table of Contents (15 chapters)

Summary


In this chapter, we discussed how to configure a Collabnet server and a Visual SVN server. We covered the creation of users and repositories in both the servers. We also set the access rules to the repositories. We learned the integration of the Subclipse plugin in Eclipse to do versioning of projects from IDE. In easy steps, we discovered the process of collaborating on the project with team members, with the help of commit and update commands. We also covered the process of getting a new project in our workspace from the repository to work. Deployment is one of the very important steps in application development. We covered deployment of applications with and without Tomcat Manager. And with this, now you are set to get on with your own application development.

We started the journey by taking a simple application and develop it step-by-step. We practically discovered the ways to develop modular Java programming using SpringMVC. We developed a contact management application layer...