Category: Spring Boot

Learn about the powerful Spring Boot framework for building and deploying Java-based applications quickly and easily. Streamline your development workflow and create production-ready apps in no time. Spring Boot is a powerful framework for building and deploying Java-based applications quickly and easily. With Spring Boot, developers can streamline their development workflow and create production-ready applications in no time.

How to Connect MongoDB with Spring Boot

Last updated on 7th March 2023 by H Sayyed | Category: Spring Boot

Are you looking to integrate MongoDB with your Spring Boot application? MongoDB is a NoSQL database that offers great scalability and flexibility, making it a popular choice for modern applications. Spring Boot, on the other hand, is a popular framework for building Java applications quickly and easily. Integrating MongoDB with Spring Boot is a straightforward […]

Read more 

Deploy Spring Boot App on VM using Nginx, HTTPS Domain

Last updated on 28th October 2022 by H Sayyed | Category: Spring Boot

In this tutorial, you will learn how to deploy a Spring Boot Application on Digital Ocean Droplet. We will be using Nginx as webserver with Reverse Proxy for pointing to Domain. We will be using Lets Encrypt for making application secure with HTTPS. Prepare Virtual Machine Server We will be using Virtual Server for deploying […]

Read more 

Integrate Razorpay with Spring Boot / Java

Last updated on 9th October 2022 by H Sayyed | Category: Spring Boot

In this tutorial, we will learn how to integrate Razorpay Payment Gateway in a Spring Boot Application. We will add Razorpay checkout option with different payment amounts. We will be using Manual Javascript methods to add razorpay frontend. For demo purpose, we will be using Razorpay in Test Mode, once we have implemented, you can […]

Read more 

Pagination in Spring Boot using Thymeleaf

Last updated on 5th March 2023 by H Sayyed | Category: Spring Boot

If you’re building a web application with Spring Boot, you may need to display large amounts of data on a single page. However, displaying all the data at once can be overwhelming and slow down the page. That’s where pagination comes in. Pagination allows you to split large data sets into smaller, more manageable pages. […]

Read more 

One-to-One Relationship in JPA

Last updated on 5th March 2023 by H Sayyed | Category: Spring Boot

Introduction In Java Persistence API (JPA), relationships between entities are used to model the interactions between objects in the application and their corresponding data in the database. One of the most common relationships is the One-to-One relationship, which allows a single instance of an entity to be associated with only one instance of another entity. […]

Read more 

HttpSession in Spring Boot Session Management

Last updated on 5th March 2023 by H Sayyed | Category: Spring Boot

Session management is an essential part of web applications. It allows the server to store and retrieve user-specific data between requests. HttpSession is a built-in mechanism provided by the Java Servlet API to manage sessions. Spring Boot makes it easy to use HttpSession in your web applications. In this blog post, we will demonstrate how […]

Read more 

Solving WebSecurityConfigurerAdapter Deprecated Warning in Spring Boot 2.x

Last updated on 5th March 2023 by H Sayyed | Category: Spring Boot

In the world of web development, security is a top priority. With the rise of cyber threats, developers need to take precautions to ensure that their applications are secure. One popular framework that developers use to build web applications is Spring Boot. However, with the release of Spring Boot 2.x, there have been some changes […]

Read more 

Login and Register Example in Spring Boot 2.7.2

Last updated on 16th August 2022 by H Sayyed | Category: Spring Boot

In this tutorial, you will learn how to create Login and Register functionality in spring boot. You can use this tutorial with different databases like PostgreSQL or MySQL and build tools like gradle or maven. This tutorial is implemented on Maven, PostgreSQL, SecurityFilterChain and Standard Folder Structure. You will find how to use User Role […]

Read more 

Using Fragments in Thymeleaf: A Guide to Reusable HTML Templates

Last updated on 5th March 2023 by H Sayyed | Category: Spring Boot

Thymeleaf is a popular server-side Java template engine used to build dynamic web applications. One of its key features is its ability to work with fragments, which are reusable HTML templates that can be included in multiple pages. This can help reduce code duplication and make it easier to maintain your web application. In this […]

Read more 

Use Thymeleaf and Bootstrap 5 Template Engine in Spring Boot

Last updated on 11th August 2022 by H Sayyed | Category: Spring Boot

Do you want to use Template Engine in Spring Boot Project – Thymeleaf is the best. Thymleaf is java library to which communicate between backend (java) and frontend (HTML, Js). It is server-side Java template which helps us to create beautiful HTML / XML templates. Thymeleaf can process six types of templates are as follows: […]

Read more