Role based Multiple Dashboard Pages access from a Login Page
In spring boot security, the users are allowed to access those features based on the user roles in the Spring boot security application. Spring boot security enables the authentication of…
In spring boot security, the users are allowed to access those features based on the user roles in the Spring boot security application. Spring boot security enables the authentication of…
In real-time applications, we needed to have different login pages to be accessed within the same application. One for the regular consumer and the other for the administrative functions. In this post, we’ll see how to create two login pages, one for regular users and the other for admin url.In designing…
In the real-life scenario, most software applications work with user-based authentication. When the user accesses the website url in the Spring boot application, the user is redirected to the authentication…
In spring boot, we see how to redirect to a different dashboard page after successful login instead of previous page. The redirection is always to the dashboard page after the…
In this post, we will see what is CSRF – Cross-Site Request Forgery attack, How to enable and disable CSRF in spring Boot Security. Cross-Site Request Forgery attack is an…
In spring boot security, we will see how to configure CSRF – Cross-Site Request Forgery attack in spring Boot Security step by step. Cross-Site Request Forgery attack is an attack…
In Spring boot security, we’ll see how to create a simple custom login page using spring boot security example step by step. This post allows you to create users with…
In spring boot security, we will see about how to change default username and password in spring boot security and how to remove the generated password from the console log…
This Spring Boot Security tutorial explains security concepts with examples step by step. In this post, we will explain the spring boot security ( spring-boot-starter-security, spring-boot-starter-security-test dependency ) using spring…
Using placeholders, Spring Boot allows you to reuse values in the application properties file. Spring boot placeholder can be used to configure a key value that is the same as another…
This article explains how to configure Schedule with initial delay. Initial delay is a period of time that Scheduler is waiting for before the configured task is executed. InitialDelay is…
This article explains how to configure Schedule with time zone. Scheduling a task with Spring Boot with time zone is as simple as annotating a method with @Scheduled annotation, and…
Spring Boot is a popular framework for building Java applications. JpaTest is a useful feature in Spring Boot for testing the persistence layer of an application, by providing a test…
Spring Boot is a popular framework for developing Java applications. One of its many advantages is the ease with which you can start and stop applications. In this blog post,…
Spring Boot is a popular framework for building robust and scalable REST APIs. One of the key features of a REST API is returning proper HTTP status codes to indicate…
Spring Boot is a popular framework for building REST APIs due to its ease of use and robust features. One of the key features of REST APIs is the ability…
Spring Boot is a popular framework for developing Java applications, and Tomcat is a widely used web server for deploying and running these applications. However, it is crucial to secure…
Spring Boot is a popular Java-based framework for building microservices and web applications. One of the key benefits of using Spring Boot is its ability to quickly get up and…
Spring Boot is a widely used framework for developing Java applications. It provides a lot of features and out-of-the-box solutions that help developers build applications quickly and easily. One of…
Spring Boot is a popular framework for building Java applications. It provides a lot of pre-configured components to help developers get started quickly, including HTTP request interceptors. In this blog…