FullStackJavaDeveloper
@FullStackJavaDeveloperPune
1.83K
subscribers
27
photos
1
video
428
links
https://www.youtube.com/@fullstackjavadeveloper
Download Telegram
Join
FullStackJavaDeveloper
1.83K subscribers
FullStackJavaDeveloper
https://www.youtube.com/watch?v=6iYC9Ej68W8&list=PL2Sl2Fj5v5gYiqjFXLeAktHfmi4m-2qT5&index=28
YouTube
Spring Boot CRUD | Learn with Mr. Kiran Jadhav
Spring Boot CRUD -
In this video, you will learn how to build a complete REST API with Create, Read, Update, and Delete (CRUD) operations and test it using Swagger UI.
🔥
What You Will Learn:
✅
Setup Spring Boot with Spring Data JPA and MySQL
✅
Configure…
FullStackJavaDeveloper
https://www.youtube.com/watch?v=yEFobmkKWQI&list=PL2Sl2Fj5v5gYiqjFXLeAktHfmi4m-2qT5&index=29
YouTube
Change embedded Tomcat server to Jetty | Undertow in Spring Boot | Learn with Mr. Kiran Jadhav
How to Change embedded Tomcat server to Jetty | Undertow in Spring Boot
Spring Boot- It is a powerful, open-source framework built on top of the Spring Framework.
Top 5 Features of Spring Boot-
1. Inbuilt Tomcat Server
2. No XML Configuration
3. Devtools…
FullStackJavaDeveloper
https://www.youtube.com/watch?v=sm7spcCJlfo&list=PL2Sl2Fj5v5gYiqjFXLeAktHfmi4m-2qT5&index=30
YouTube
Spring Boot JDBCTemplate CRUD | Learn with Mr. Kiran Jadhav
JDBCTemplate CRUD Application-
Create: Inserting data into the database using JdbcTemplate.
Read: Querying data with various methods
Update: Modifying data in the database.
Delete: Removing records from the database.
GitHub URL- https://github.com/fulls…
FullStackJavaDeveloper
https://www.youtube.com/watch?v=7-O1RffNRE8&list=PL2Sl2Fj5v5gYiqjFXLeAktHfmi4m-2qT5&index=31
YouTube
@PathVariable vs @RequestParam in Spring Boot | Learn with Mr. Kiran Jadhav
Diff between @PathVariable and @RequestParam in Spring Boot-
@PathVariable-
1. Extracts values from the URI path
2. Mandatory Parameter(Must be present in the URL)
3. @GetMapping("/employees/{empId}")
public Employee getById(@PathVariable int empId)
4.…
👏
3
FullStackJavaDeveloper
https://www.youtube.com/watch?v=theMPuEt2L8&list=PL2Sl2Fj5v5gYiqjFXLeAktHfmi4m-2qT5&index=32
YouTube
Spring Boot XML Request Payload | Learn with Mr. Kiran Jadhav
Spring Boot XML Request Payload-
Steps-
1. Add Dependency in pom.xml file- Jackson XML
2. Use Annotation at POJO Class- @XmlRootElement(name="Employee")
3. In Controller- Produces, Consumes- MediaType-XML
GitHub- https://github.com/fullstackjavadevelop…
👏
2
FullStackJavaDeveloper
https://www.youtube.com/watch?v=5kup7aGsGZM&list=PL2Sl2Fj5v5gYiqjFXLeAktHfmi4m-2qT5&index=33
YouTube
Collection Framework in Java | Learn with Mr. Kiran Jadhav
Collection Framework- Collection it is a group of objects.
3 interfaces-
1. List- It allows duplication of data. It follows insertion order
A] ArrayList- DDL[Read]
B] LinkedList- DML[Insert/Update/Delete]
2. Set- It is a uniqueness
A] HashSet- It does not…
FullStackJavaDeveloper
https://www.youtube.com/watch?v=JllnxZH9AGA&list=PL2Sl2Fj5v5gYiqjFXLeAktHfmi4m-2qT5&index=34
YouTube
Spring Boot with Microservices using RestTemplate | Learn with Mr. Kiran Jadhav
Spring Boot with Microservices | Service Communication using RestTemplate-
Microservices- 2 or more Spring Boot module they will communicate with each other
Services-
1. DepartmentService- 9191
2. EmployeeService- 9192
3. ServiceRegistry- 8761
4. APIGateway…
FullStackJavaDeveloper
https://www.youtube.com/watch?v=S6zVh2px6fE&list=PL2Sl2Fj5v5gYiqjFXLeAktHfmi4m-2qT5&index=35
YouTube
Spring Boot with JWT | Learn with Mr. Kiran Jadhav
Spring Boot with JWT-
JWT- JSON Web Token- JSON Web Token (JWT) is an open standard (RFC 7519) that defines a compact and self-contained way for securely transmitting information between parties as a JSON object. This information can be verified and trusted…
FullStackJavaDeveloper
https://www.youtube.com/watch?v=HXoN6zQ0cGk&list=PL2Sl2Fj5v5gYiqjFXLeAktHfmi4m-2qT5&index=36
YouTube
How to Configure Lombok with Eclipse & IntelliJ IDEA | Learn with Mr. Kiran Jadhav
How to Configure Lombok with Eclipse & Intellij IDEA-
🚀
Learn how to configure Project Lombok in Eclipse and IntelliJ IDEA with this easy step-by-step tutorial by Mr. Kiran Jadhav. Whether you're a beginner or an experienced Java developer, this video will…
FullStackJavaDeveloper
https://www.youtube.com/watch?v=aO1nN7VnQTY&list=PL2Sl2Fj5v5gYiqjFXLeAktHfmi4m-2qT5&index=37
YouTube
Spring Boot with Microservices Using Feign Client | Learn with Mr. Kiran Jadhav
Spring Boot with Microservices Using Feign Client
Microservices- 2 or more Spring Boot module they will communicate with each other
Services-
DepartmentService- 9191
EmployeeService- 9192
ServiceRegistry- 8761
APIGateway- 2025
Service Communication- Feign…
FullStackJavaDeveloper
https://www.youtube.com/watch?v=BLGQXAE1xOo&list=PL2Sl2Fj5v5gYiqjFXLeAktHfmi4m-2qT5&index=38
YouTube
Spring Boot with External API Call using RestTemplate | Learn with Mr. Kiran Jadhav
Spring Boot with External API Call using RestTemplate
Service Communication- RestTemplate
URL- https://jsonmock.hackerrank.com/api/countries
GitHub URL- https://github.com/fullstackjavadeveloperpune/springbootexternalapi.git
💻
Stay ahead in 2025 and beyond!…
FullStackJavaDeveloper
https://www.youtube.com/watch?v=e_w-79kdNLc&list=PL2Sl2Fj5v5gYiqjFXLeAktHfmi4m-2qT5&index=39
YouTube
Spring Boot External API Call using Feign Client | Learn with Mr. Kiran Jadhav
Spring Boot External API Call using Feign Client
Service Communication- Feign Client
External API URL- https://jsonmock.hackerrank.com/api/countries
GitHub- https://github.com/fullstackjavadeveloperpune/externalapicallusingfeignclient
💻
Stay ahead in 2025…
FullStackJavaDeveloper
https://www.youtube.com/watch?v=12hGfRY5QLQ&list=PL2Sl2Fj5v5gYiqjFXLeAktHfmi4m-2qT5&index=40
YouTube
QR Code Project | Learn with Mr. Kiran Jadhav
QR Code Project
Tech Stack- Full Stack[JDK 17, Spring Boot 3+, React JS v19]
Back End- Java, JDK 17, Data JPA, Spring Boot, Spring Security, JWT Authentication
Front End- React JS
Database- MySQL
Project Price: INR ₹999 (includes complete project setup…
FullStackJavaDeveloper
https://www.youtube.com/watch?v=PXAwEUbOCBw&list=PL2Sl2Fj5v5gYiqjFXLeAktHfmi4m-2qT5&index=41
YouTube
Views in Spring Boot | Learn with Mr. Kiran Jadhav
Views in Spring Boot
Views- Views in SQL are a type of virtual table that simplifies fetch data from one or more tables.
Benefits-
Simplify Complex Queries: Encapsulate complex joins and conditions into a single object.
Enhance Security: Restrict access…
FullStackJavaDeveloper
https://www.youtube.com/watch?v=jvJ8Sp5BwiY&list=PL2Sl2Fj5v5gYiqjFXLeAktHfmi4m-2qT5&index=42
YouTube
GST Billing Project | Learn with Mr. Kiran Jadhav
GST Billing Project
Tech Stack- Full Stack[JDK 17, Spring Boot 3+, React JS v19]
Back End- Java, JDK 17, Data JPA, Spring Boot, Spring Security, JWT
Front End- React JS
Database- MySQL
API Testing- Postman API, Swagger UI
Project Price: INR ₹9999 (includes…
FullStackJavaDeveloper
https://www.youtube.com/watch?v=HzGc67QdTDA&list=PL2Sl2Fj5v5gYiqjFXLeAktHfmi4m-2qT5&index=43
YouTube
Retail ECommerce Project | Spring Boot with React JS | Learn with Mr. Kiran Jadhav
Retail ECommerce Project | Spring Boot with React JS
Tech Stack- Full Stack[JDK 17, Spring Boot 3+, React JS v19]
Back End- Java, JDK 17, Data JPA, Spring Boot
Front End- React JS
Database- MySQL
API Testing- Postman API, Swagger UI
To Purchase or Inquire…
FullStackJavaDeveloper
https://www.youtube.com/watch?v=6kyrX06ycSA&list=PL2Sl2Fj5v5gYiqjFXLeAktHfmi4m-2qT5&index=44
YouTube
Pagination in Spring Boot using JPA | Learn with Mr. Kiran Jadhav
Pagination in Spring Boot using JPA -
Pagination is a technique used to break down large datasets into smaller, manageable chunks (pages), improving performance and user experience.
In Spring Boot with Spring Data JPA, pagination is implemented using the…
FullStackJavaDeveloper
https://www.youtube.com/watch?v=0Z_yVWT-xcs&list=PL2Sl2Fj5v5gYiqjFXLeAktHfmi4m-2qT5&index=45
YouTube
Transactional Annotations in Spring Boot | Learn with Kiran Jadhav
@Transactional annotation-
@Transactional annotation in Spring Boot makes sure that all the database operations in a method are done together.
If everything works → changes are saved (commit).
If something fails → changes are undone (rollback).
It Helps…
❤
1
FullStackJavaDeveloper
https://youtu.be/sFCQDBcBY9o?si=4L5baiVupfh1WuPJ
YouTube
ECommerce Full Stack Project | Spring Boot | Microservices | React JS | Learn with Mr. Kiran Jadhav
ECommerce Full Stack Project- Spring Boot with Microservices Using React JS
Tech Stack-
Back End- Java, Data JPA, Spring Boot, Spring Security- JWT, Microservices
Front End- React JS
Database- MySQL, PostgreSQL, MongoDB
API Testing- Postman API, Swagger…
❤
1
FullStackJavaDeveloper
https://www.youtube.com/watch?v=6inTm7kDoRE&list=PL2Sl2Fj5v5gYiqjFXLeAktHfmi4m-2qT5&index=46
YouTube
Full Stack Application | Spring Boot With React JS | SignUp | Learn with Mr. Kiran Jadhav
Full Stack Application | Spring Boot With React JS | Functionality- SignUp
Tech Stack-
✅
Backend – Java 17, Spring Boot, Spring Data JPA
✅
Frontend – React JS
✅
Database – MySQL
✅
API Communication – Axios
✅
Version Control – GitHub
React JS-
✅
Create…