| 0 | 139.5 KB | ||
| 1. Introduction - Architecture Of All System.srt | 3.7 KB | ||
| 1. Lombok Overview.mp4 | 10.2 MB | ||
| 1. Lombok Overview.srt | 1.7 KB | ||
| 1. Project Overview.mp4 | 24.5 MB | ||
| 1. Rest Controller Overview.mp4 | 18.8 MB | ||
| 1. Rest Controller Overview.srt | 3.8 KB | ||
| 1 | 163.9 KB | ||
| 1. Introduction - Architecture Of All System.mp4 | 36.4 MB | ||
| 1. Project Overview.srt | 2.8 KB | ||
| 1. Source Code.html | 102 B | ||
| 1. Test Configuration.mp4 | 28 MB | ||
| 1. Test Configuration.srt | 1.8 KB | ||
| 2 | 37.1 KB | ||
| 2. Example Integration Test.mp4 | 37.9 MB | ||
| 2. Example Integration Test.srt | 1.8 KB | ||
| 2. Install Java 11.mp4 | 12.6 MB | ||
| 2. Install Java 11.srt | 102 B | ||
| 2. Installation - Create Project from spring.start.io.mp4 | 30.2 MB | ||
| 2. Installation - Create Project from spring.start.io.srt | 2.7 KB | ||
| 2. Spring Boot Overview.mp4 | 30.4 MB | ||
| 2. Spring Boot Overview.srt | 7.3 KB | ||
| 2. User Controller Implementation and Dto.mp4 | 11.6 MB | ||
| 2. User Controller Implementation and Dto.srt | 1.6 KB | ||
| 3. Configuration - MongoDB properties.mp4 | 31.6 MB | ||
| 3. Install MongoDB and Mongo Compass.mp4 | 35.8 MB | ||
| 3. Install MongoDB and Mongo Compass.srt | 1.8 KB | ||
| 3. MongoDB Overview.mp4 | 63.5 MB | ||
| 3 | 501.1 KB | ||
| 3. Configuration - MongoDB properties.srt | 2.1 KB | ||
| 3. MongoDB Overview.srt | 5.8 KB | ||
| 3. Order Controller Implementation and Dto.mp4 | 33.7 MB | ||
| 3. Order Controller Implementation and Dto.srt | 3.2 KB | ||
| 4. Install Intellij.mp4 | 14.7 MB | ||
| 4. Install Intellij.srt | 102 B | ||
| 4 | 355.6 KB | ||
| 4. Mongo Configuration and Testing with Postman.mp4 | 86.3 MB | ||
| 4. Mongo Configuration and Testing with Postman.srt | 3.5 KB | ||
| 4. MongoDB Basic Queries.mp4 | 51.2 MB | ||
| 4. MongoDB Basic Queries.srt | 4 KB | ||
| 4. User CollectionModel Class Implementation.mp4 | 25.5 MB | ||
| 4. User CollectionModel Class Implementation.srt | 2.3 KB | ||
| 5. Install Postman.mp4 | 8 MB | ||
| 5. MongoDB Indexing.srt | 4.6 KB | ||
| 5 | 72.8 KB | ||
| 5. Install Postman.srt | 614 B | ||
| 5. MongoDB Indexing.mp4 | 56.5 MB | ||
| 5. Order CollectionModel Class Implementation.mp4 | 14.6 MB | ||
| 5. Order CollectionModel Class Implementation.srt | 921 B | ||
| 6. Install Lombok.mp4 | 9.7 MB | ||
| 6. Install Lombok.srt | 512 B | ||
| 6. Spring Boot Jpa Repository Overview.mp4 | 18 MB | ||
| 6. Spring Boot Jpa Repository Overview.srt | 3 KB | ||
| 7. MongoRepository Implementation.mp4 | 76.3 MB | ||
| 7. MongoRepository Implementation.srt | 5.2 KB | ||
| TutsNode.com.txt | 102 B | ||
| [TGx]Downloaded from torrentgalaxy.to .txt | 614 B | ||
| 6 | 68.9 KB | ||
| 7 | 169.1 KB | ||
| 8. User Service Implementation.srt | 2.3 KB | ||
| 8 | 365.9 KB | ||
| 8. User Service Implementation.mp4 | 35.1 MB | ||
| 9 | 336 KB | ||
| 9. Order Service Implementation.mp4 | 20.7 MB | ||
| 9. Order Service Implementation.srt | 1.3 KB | ||
| 10 | 390.9 KB | ||
| 11 | 92.7 KB | ||
| 12 | 308.5 KB | ||
| 13 | 26.3 KB | ||
| 14 | 8.8 KB | ||
| 15 | 34.2 KB | ||
| 16 | 349.1 KB | ||
| 17 | 192.8 KB | ||
| 18 | 49.9 KB | ||
| 19 | 292.2 KB | ||
| 20 | 458.8 KB | ||
| 21 | 391.4 KB | ||
| 22 | 443.5 KB | ||
| 23 | 325.1 KB | ||
| 24 | 325.9 KB | ||
| ▲ 81 total files | |||

Description
Hi guys,
we will talk about how we will go on in this course.
Also we talk about project structure that will be implemented in this course.
We will create a new project in this course.
And we will implement this project using Spring Boot and MongoDB.
In our project, we will implement CRUD operations. And these CRUD operations will be requested from Postman.
Then these requests will be handled from Spring Boot.
Our project will be User Orders Application.
Our main operations will be saveUser, saveOrder, filterUsers and groupUsers.
We will have two main components to implement our project.
These are server side and client side.
In Server Side:
Spring Boot will be the main thing.
Model View Controller structure will be implemented using Spring Boot.
Our MVC structure will work like that:
First of all, the entity classes will be created under the model package.
Later, if model class is permanent, we will create a repository for it.
Then we will call the repositories from services.
Finally, we will call services from controllers.
In Spring Boot, Data will be presented to clients as an API call so Spring Rest Controller will be used to handle it.
We will use MongoDB as Database.
We will see the basic operations in MongoDB. Like Create, update, select and aggregation operations.
We will talk about database – schema relation.
We will talk about how we can handle auto_increment on MongoDB.
We will also use Object Relational Mapping with Java Persistence API.
We will use Mongo Repository and Crud Repository in Spring Boot.
So these repository templates will handle common database operations like save, update, find, delete.
With Spring Boot, we will also use Lombok library for clean code.
You know that we don’t want to implement getter, setter, equals and hashcode. So we can escape it using Lombok @Data or @Value annotation.
We will use Gradle To handle all dependencies on the server side.
That’s all about Server side.
Let’s talk about the Client Side.
We will create endpoints with Spring boot.
And on the Client Side, we will test these endpoints with Postman.
With Postman, we will also handle Authorization and basic Http methods.
Who this course is for:
All developers curious about mongoDB
Requirements
Basic Java Knowledge
Last Updated 1/2021
| torrent name | size | uploader | age | seed | leech |
|---|---|---|---|---|---|
| 3.9 GB | freecoursewb | 2 days | 0 | 0 | |
|
Udemy - Power BI Full Course - Learn Power BI from Scratch to Advance Posted by
freecoursewb in Other
|
2.6 GB | freecoursewb | 2 days | 26 | 35 |
| 484.5 MB | freecoursewb | 3 days | 1 | 6 | |
|
Udemy - Ultimate Full stack Agentic AI and Generative AI with Python Posted by
freecoursewb in Other
|
453.7 MB | freecoursewb | 2 weeks | 33 | 8 |
| 3 GB | freecoursewb | 1 month | 2 | 52 |
All Comments