The Account microservice is responsible for managing user accounts, basically, almost every application has a user account system. This microservice provides the necessary endpoints to create, read, update, and delete accounts. The microservice is built using Spring Boot and follows the Domain-Driven Design (DDD) approach.
The microservice is divided into two main modules: account and account-service:
the account module contains the API definition and the data transfer objects (DTOs) for the Account microservice;
the account-service module contains the service implementation, repository, and entity classes.
This approach allows the separation of concerns and the organization of the codebase into different modules, making it easier to maintain and scale the application. Also, it creates a facility to reuse the microservice by other microservices in the future - builts in Java.
The construction of the Account microservice follows the Clean Architecture approach, which promotes the total decoupling of business rules from interface layers. The diagram below illustrates the flow of data among the layers of the Account microservice:
Previously to build the Account microservice, it is necessary to prepare the environment by installing the database to persist the data. For that, we will use a Docker Compose file to create a PostgreSQL container, as well as, a cluster to isolate the microservices from external access, creating a secure environment - trusted layer. A Docker Compose file is a YAML file that defines how Docker containers should behave in production. The file contains the configuration for the database, the microservices, and the network configuration.
flowchart LR
subgraph api [Trusted Layer]
direction TB
account e3@==> db@{ shape: cyl, label: "Database" }
end
internet e1@==>|request| account:::red
e1@{ animate: true }
e3@{ animate: true }
classDef red fill:#fcc
packagestore.account;importjava.nio.charset.StandardCharsets;importjava.security.MessageDigest;importjava.security.NoSuchAlgorithmException;importjava.util.Base64;importjava.util.Date;importjava.util.List;importjava.util.stream.StreamSupport;importorg.springframework.beans.factory.annotation.Autowired;importorg.springframework.http.HttpStatus;importorg.springframework.stereotype.Service;importorg.springframework.web.server.ResponseStatusException;@ServicepublicclassAccountService{@AutowiredprivateAccountRepositoryaccountRepository;publicAccountfindById(Stringid){returnaccountRepository.findById(id).get().to();}publicAccountcreate(Accountaccount){finalStringpass=account.password().trim();if(pass.length()<8){thrownewResponseStatusException(HttpStatus.BAD_REQUEST,"Password too short!");}account.sha256(calcHash(pass));account.creation(newDate());returnaccountRepository.save(newAccountModel(account)).to();}publicAccountfindByEmailAndPassword(Stringemail,Stringpassword){finalStringsha256=calcHash(password);AccountModelm=accountRepository.findByEmailAndSha256(email,sha256);returnm==null?null:m.to();}publicList<Account>findAll(){returnStreamSupport.stream(accountRepository.findAll().spliterator(),false).map(AccountModel::to).toList();}/* * A reference to implement a nice password's hash * https://github.com/ByteByteGoHq/system-design-101/tree/main?tab=readme-ov-file#how-to-store-passwords-safely-in-the-database-and-how-to-validate-a-password */privateStringcalcHash(Stringvalue){try{MessageDigestdigester=MessageDigest.getInstance("SHA-256");byte[]hash=digester.digest(value.getBytes(StandardCharsets.UTF_8));Stringencoded=Base64.getEncoder().encodeToString(hash);returnencoded;}catch(NoSuchAlgorithmExceptione){thrownewRuntimeException(e);}}}