Your Web News in One Place

Help Webnuz

Referal links:

Sign up for GreenGeeks web hosting
March 10, 2021 05:37 am GMT

Keep your code well organized. How I structure my web project

Article originally posted on my personal website at How to organize your web project

It is easy to get carried away and just write code. The code may even work as intended but trust me that, in 6 months time, you wont know anymore what it does and where to find a specific functionality. Unless you have a clean and clear structure. I am not necessarily talking about the classes itself, but the way to properly organize functionalities in packages so that, when a change is needed 6 or 12 month later, you know exactly where to look.

I will be using a web server application as an example and will explain pitfalls and how to avoid them. Some may seem obvious, nevertheless I feel obligated to point them out. Many times you will see wrongly placed functionality, especially in legacy code. Furthermore, it is not always a clear and clean line between two places and both may seem right, so consistency is key in these situations.

Main parts of a web application

Web applications usually have a few key main components that interact with each other. These are the controllers that handle the requests, the services that processes the data and the data access layer responsible for persisting and retrieving stored data. Lets take a look over each component.

Controller

This is the main entry point of the application and it is usually mapped to one or more endpoints that are accessible via the web browser. The controller receives the HTTP request and it will return an HTTP response back to the client. It does not matter if you are using Spring, Play or any other framework, the controller should be the one to handle the request and only the request.

One frequently encountered mistake is doing business logic inside the controller. I strongly believe that this not the right way of doing thigs and that only validating the request should be done here, the actual business logic being the services responsibility. Furthermore, the request should not be submitted to the services unless it is absolutely necessary. Instead use a mapper to transform the request into one or more data objects and those should be passed down to the service.

The main responsibilities of the controller should only be:

  • Receiving the request
  • Validating it
  • Mapping the request to an internal data object (here it should delegate the request to a mapper)
  • Calling the service
  • Mapping the result object to the HTTP response
  • Returning the response

Service

The service is the component that is responsible for doing the business logic. Any calculations, business validations, and business operations should be handled here. A service can call and delegate part of the functionality to other services, with the exception of data persistence, something that should be done buy the DAO.

Here it can be easy to have God classes which do many (unrelated) things. It is normal to have many services that interact with one another. Try to split up your classes based on what they do and not over extend a services responsibility. Do you manage users? Have a Users service. Does your site allow posting of articles, have an Articles service. What about comments? You guessed it, a Comments service. Yes, you need a logged in user to post an articles, so the Article and Users services can interact with one another, but dont do the submitNewArticle(User user, String articleText) method inside the Users service just because you use a User object.

Data

This is the part of the application that handles the persisted and transmitted data. This is where we should keep Domain Objects (DO), Transfer Objects (DTO), Access Layer (DAO), and, at least in my case, filters needed. Keep in mind that these should be properly arranged into packages. Dont keep classes that have different responsibilities in the same packages.

Others

This is the basic structure, however each application has its own needs. That is why other top-level packages should be created when needed. Furthermore, the main three parts presented here can be further divided into other parts in order to make things clear and to make the code easier to maintain.

Article originally posted on my personal website at How to organize your web project


Original Link: https://dev.to/pazvanti/keep-your-code-well-organized-how-i-structure-my-web-project-2773

Share this article:    Share on Facebook
View Full Article

Dev To

An online community for sharing and discovering great ideas, having debates, and making friends

More About this Source Visit Dev To