News
Spring Boot – How to Configure Scheduler with Time zone
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 giving cron expression as a parameter and zone as an another parameter. This cron expression is used to determine when
Spring Boot – How to Configure Scheduler with Initial Delay
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 a element in @Scheduled annotation that is added to a method. You can use initialDelay parameter along with fixedRate and
Reuse Values Using ${} placeholders in application.properties in spring boot
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 key value or to create a value using another key value. This avoids the appearance of redundant configuration settings in
Spring Boot Security Tutorial Step by Step Example Using Spring
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 boot security default login page and using default username and password. These default spring boot security login pages are available
Change default username and password in Spring Boot Security
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 in spring boot security. The default user name and password for the spring boot security application must be changed due
Spring Boot Security Custom Login Page Example Single User Role
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 a single user role. Users are allowed to access all pages by default when they are authenticated using spring boot
Configure CSRF Token in Spring Boot Security example
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 executes unwanted calls on a web application without intervention of the end user.The end user is forced to execute these
How to enable and disable CSRF in Spring Boot Security
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 attack executes unwanted calls on a web application without intervention of the end user.The end user is forced to execute
Redirection to Dashboard Page after successful Login in Spring Boot
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 login in spring boot. When a user accesses a website url in Spring boot application, the user is redirected to
Redirect to Different Pages after Login based on User Roles
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 login page. After successful login, the user is redirected to different dashboard based on logged in user roles. In this