pagination-spring-boot-mongodb

Pagination in Spring Boot application with MongoDB

In this article let us see how to do pagination in the Spring Boot application with MongoDB as a database. Let us see the below things one by one. What is pagination? Pagination is theRead More...

regex-sorting-mongodb-queries

Use regex and sorting in MongoDB queries with Spring Boot

Here let us see how to use the regex pattern to fetch the records from MongoDB and how to sort the fetching records in Spring Boot Application. Here I have used mongoTemplate to perform theRead More...

Spring MongoDB Criteria Queries

Criteria Queries of MongoDB in Spring Boot Application

This article explains how to use the criteria query to fetch the data from MongoDB with Spring Boot Application. There are lots of query operators available in MongoDB. In this article, let us see howRead More...

Find-Queries-Mongo-Template

All the find queries of MongoTemplate in Spring MongoDB

This article explains how to use all the find queries of MongoTemplate in the Spring Boot Application which is using spring-boot-starter-data-mongodb as a dependency. All the examples described here are tested under version 2.5.2 ofRead More...

JWT Token with Spring Security

JWT Token authentication of Spring Security in Spring Boot

This article explains how to implement the JWT token-based authentication of Spring Security in the Spring Boot Application. First, let us see what is JWT Token and the structure of JWT in detail then weRead More...

Session-Token-JWT-Token

Usage of Session Token and JSON web Token

This article explains, what is the session token? and what is the JSON web token? and what is the usage of both the tokens?. Before explaining the tokens let me explain why we move toRead More...

Spring-Security-Authentication-MySql-JPA

Spring Security Authentication with MySql using JPA

In this article, we are going to see how to do authentication with the MySql database using JPA in the Spring Boot application. JPA is a Java Persistence API that is used to persist theRead More...

JDBC-H2-Database-Spring-Security

JDBC authentication with H2 Database in Spring Security

In this article, we are going to see how to do authentication of spring security with JDBC and H2 Database. JDBC is an application programming interface (API) of java that handles database connectivity and issuingRead More...

Spring-Security-Multiple-Authentication

How to do multiple Authentication in Spring Security

In this article, we are going to see how to do Authentication if the application is having multiple types of login. The login type may be form login, Oauth, SSO/LDAP, or Octa. In the lastRead More...

Spring-Security-Authentication

How the Authentication works in Spring Security

Authentication is a process for identifying the users with their proof of identities like username and password. Simply say it will ask the question who you are?. you need to answer that question to verify.Read More...