Skip to main content

Company guides lines for developing the project in real time

 ðŸ‘‰ Real-time project guides lines in my company

Code review comments.

1. Branch name should be aligned to the feature you are developing. Name the branch something like - "Agastya-service"


2. This repository will have just one microservice. You don't need a directory named "SpringBootCurdOperationWithMongoDB".


3. Similarly, the repo name should be Agastya-service

--> your repository name should not have tech stack mentioned, it has to be Agastya-service.


4. DB Url, you have hardcoded in the application.yml. It should be in your local profile. Have profiles created for the application, define it locally, dev, prod. And along with that, create the application-local.YAML, application-dev.yml, application-prod.yml accordingly.


5. In the application.yml define the profile and enable to pick up the profile during the run time. Your run config should have the variable defined for the profile


6. Modal class, instead of student class - create a class "TelemetryEvent" with the following variables.

a. deviceId - PK,String

b. timestamp - timestamp

c. telemetryKey - String

d. telemetryValue - String


7. Never commit any code with commented code. Unless the comment has anything to say to the readers, you shouldn't commit the code with comments.


8. @RequestController - define all the parameters, including the name, value. The base path should be "Agastya" .


9. For each RequestMapping, define the method type and the path. You should be returning a list of telemetry messages, request mapping path should be "telemetry", method = HTTP.GET return type of the method should be <List<TelemetryEvents>> even for a single object. In the parameters, have a parameter to fetch by ID.


10. Don't use setters and getters. Use Lombok library and import them for setters, getters, constructors, parameterized constructors, etc. No boilerplate code at all.


11. Test cases don't do anything. It just starts the application. Have a test class in this case,

a. Create a student, capture the student id. Assert for the student details.

b. find all the students. and filter the student id created. Assert for the ID created and the id in list.

. c. Update the student ID, Assert for the Student ID, and the updates made.


12. Naming conventions have to correct. Do not prefer to start with "_", although it is a convention. Keep close to the objects that you are working on.


13. Graddle config :

. -> group should be "com.technoidentity.agastya"

. -> artifactory = "agastya-service"


14. rootProject.name = 'agastya-service' in settings.gradle


15. README should be in the same folder as that of the project. And the project resources should be the repository.


Comments

Popular posts from this blog

How to Send OTP in Mobile Number | login with OTP mobile Number | How to send OTP in mobile no with Spring Boot APP

   ðŸ˜‚               Login with Mobile Number OTP ---------------------------------------------------------------------------- If you want to develop a project to log in with OTP mobile Number in Spring Boot Applications then this post for you. In this post, I am going to use some other service to send the OTP in mobile number. we have to use it in this project spring boot. we are going to use Twilio to send SMS. we are going to use a web socket to send the data from the browser to the SMS gateway. Oracle Database for store the user details. <dependency> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-starter-web</artifactId> </dependency> <dependency> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-starter-thymeleaf</artifactId> <version>2.3.3.RELEASE</version> </dependency> <dependency> <groupId>com.twilio.sdk</grou

Spring Boot With MySQL Database connection with Examples | MySQl Database Configuration with Spring Boot Projects

 ðŸ˜ƒ MySQL Database Configuration with Spring Boot Projects  In this article, we are going to introduce How to connect MySQL Database with the Spring Boot project. pom.xml   <dependency> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-starter-data-jpa</artifactId> </dependency> <dependency> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-starter-web</artifactId> </dependency> <dependency> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-devtools</artifactId> <scope>runtime</scope> <optional>true</optional> </dependency> <dependency> <groupId>mysql</groupId> <artifactId>mysql-connector-java</artifactId> <scope>runtime</scope> </dependency> <dependency> <groupId>org.projectlombok</gro

How can we create Auto generated field or ID for mongodb using spring boot

😂 How can we create an Auto-generated field or ID for MongoDB using spring boot? First Create One Application Like Mongodb_sequence-id-generator Pom.XML <dependency> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-starter-web</artifactId> </dependency> <dependency> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-starter-data-mongodb</artifactId> </dependency> <dependency> <groupId>de.flapdoodle.embed</groupId> <artifactId>de.flapdoodle.embed.mongo</artifactId> </dependency> User.java package com.app; import org.springframework.data.annotation.Id; import org.springframework.data.annotation.Transient; import org.springframework.data.mongodb.core.mapping.Document; @Document(collection = "users_db") public class User { @Transient public static final String SEQUENCE_NAME = &