Skip to content
B2 Tech
  • Home
  • Blog
  • Java
    • Core Java
    • Java Swings
    • JavaFX
  • Web Technologies
    • Angular 10
    • Angular 2
    • Angular 9
    • Boostrap 4
    • CSS
    • Express.js
    • High Charts
    • HTML
    • Javascript
    • jQuery
    • Mongoose
    • Nodejs
    • Typescript
  • Advance Java/J2EE
    • JSF
    • JSP
    • Servlets
    • Thymeleaf
    • Spring MVC
    • Spring JDBC
    • Spring Boot
    • JPA
    • Hibernate
    • Struts
    • MyBatis/iBatis
  • Interview Programs
  • Web Services
    • REST Services
    • SOAP Services
  • Spring Boot
    • Spring Boot [100+ Tutorials]
    • Spring Security
    • Spring Annotations
    • Spring Data JPA
    • GraphQL and Spring Boot
  • Cloud
    • AWS
  • Me
    • Youtube
    • Udemy
    • About
    • Github
    • Contact
    • Privacy Policy
  • Toggle website search
Menu Close
  • Home
  • Blog
  • Java
    • Core Java
    • Java Swings
    • JavaFX
  • Web Technologies
    • Angular 10
    • Angular 2
    • Angular 9
    • Boostrap 4
    • CSS
    • Express.js
    • High Charts
    • HTML
    • Javascript
    • jQuery
    • Mongoose
    • Nodejs
    • Typescript
  • Advance Java/J2EE
    • JSF
    • JSP
    • Servlets
    • Thymeleaf
    • Spring MVC
    • Spring JDBC
    • Spring Boot
    • JPA
    • Hibernate
    • Struts
    • MyBatis/iBatis
  • Interview Programs
  • Web Services
    • REST Services
    • SOAP Services
  • Spring Boot
    • Spring Boot [100+ Tutorials]
    • Spring Security
    • Spring Annotations
    • Spring Data JPA
    • GraphQL and Spring Boot
  • Cloud
    • AWS
  • Me
    • Youtube
    • Udemy
    • About
    • Github
    • Contact
    • Privacy Policy
  • Toggle website search

Author: Bushan Sirgur

This author has written 394 articles
  1. Home>
  2. Bushan Sirgur>
  3. Page 8
CSS / Boostrap 4 / HTML / Javascript / jQuery

Testimonials JavaScript Project for Beginners

Hey guys in this post, we will create a simple javascript testimonials application. The project is live on the web. Topics covered This application involves the following topics - DOM…

0 Comments
May 29, 2021
CSS / Boostrap 4 / HTML / Javascript / jQuery

Javascript Background Image Slider Project for Beginners

Hey guys in this post, we will create a simple javascript background image slider application. The project is live on the web. Topics covered This application involves the following topics…

0 Comments
May 28, 2021
HTML / Boostrap 4 / CSS / Javascript / jQuery

Javascript Counter Project for Beginners

Hey guys in this post, we will create a simple counter application in Javascript. The project is live on the web. Topics covered The idea was to click on either…

0 Comments
May 28, 2021
Spring Boot / REST Services / Spring MVC / Spring Security

Spring Security Configure Users using JdbcUserDetailsManager implementation

Hey guys in this post, we will discuss configuring users in Spring Security using JdbcUserDetailsManager implementation with Example. Complete example Let's create a step-by-step spring boot project and implement JdbcUserDetailsManager…

0 Comments
May 27, 2021
Spring MVC / REST Services / Spring Boot / Spring Security

Spring Security Configure Users using InMemoryUserDetailsManager

Hey guys in this post, we will discuss configuring users using InMemoryUserDetailsManager with Example. In the previous post, we will discuss about configuring users using inMemeoryAuthentication. This is the continuation…

0 Comments
May 26, 2021
Spring Boot / REST Services / Spring MVC

Jackson @JsonIgnore and @JsonProperty annotation with Example

Hey guys in this post, we will discuss Jackson @JsonIgnore and @JsonProperty annotation with Example. Overview Jackson is a very popular and efficient java based library to serialize or map java…

0 Comments
May 25, 2021
Spring Boot / REST Services / Spring MVC

Spring @Value annotation with Example

Hey guys in this post we will discuss Spring @Value annotation with example. This annotation is not specific to Spring, it also a part of Spring Boot. Overview @Valueannotation is…

0 Comments
May 24, 2021
Spring Boot / REST Services / Spring MVC / Spring Security

Spring Security Configure Users using inMemoryAuthentication

Hey guys in this post, we will discuss configuring multiple users using inMemoryAuthentication in Spring security. This is the continuation of the previous post, please follow the previous post for…

0 Comments
May 21, 2021
Spring Boot / Design Patterns / REST Services / Spring MVC

Java MVC Design Pattern

Hey guys in this post, we will discuss the Java MVC design patterns with an example. The idea behind this architectural design pattern is to seperate the Presentation Layer from…

0 Comments
May 18, 2021
Spring Boot / Design Patterns / REST Services / Spring MVC

Java 3 Tier Architecture

Hey guys in this post, we will discuss the Java 3 tier/layer architecture in detail. Overview 3-tier architecture is a client-server architecture in which the functional process logic, data access,…

0 Comments
May 17, 2021
Spring Boot / REST Services / Spring MVC / Spring Security

Customize the Spring security to deny all the requests

Hey guys in this post, we will discuss customizing the spring security to deny all the requests. This is the continuation of the previous post, make sure to check the…

0 Comments
May 12, 2021
Spring MVC / REST Services / Spring Boot / Spring Security

Customize the Spring security to permit all the requests

Hey guys in this post, we will discuss customizing the Spring security to allow all the requests. This is the continuation of the previous post, make sure to check the…

1 Comment
May 11, 2021
Spring Boot / REST Services / Spring MVC / Spring Security

Customize the Spring security to permit and deny the specific requests

Hey guys in this post, we will discuss customizing the spring security to permit and deny the specific requests. This is the continuation of the previous post, make sure to…

0 Comments
May 10, 2021
Spring MVC / REST Services / Spring Boot / Spring Security

Change the default username and password of Spring security application

Hey guys in this post, we will discuss changing the default username and password of the spring security application. This is the continuation of the previous post, make sure the…

0 Comments
May 8, 2021
Spring Security / REST Services / Spring Boot / Spring MVC

Add Spring Security to Spring Boot Application

Hey guys in this post we will discuss adding spring security to a spring boot application with step by step process. Introduction Spring Security is a powerful and highly customizable…

1 Comment
May 6, 2021
Core Java

Introduction to Object Oriented Programming (OOP’s)

Hey guys in this post we will discuss a quick overview of Object-Oriented Programming. What is OOP's? Object-oriented programming system (OOP's) is a programming paradigm based on the concept of…

0 Comments
May 5, 2021
Utilities / Tools

Important Git terminologies that every developer should know

Hey guys in this post we will discuss Git terminologies that every developer should know Git terminologies Following are the important Git terminologies - Branch Checkout Cherry picking Clone Fetch…

0 Comments
May 4, 2021
Core Java

Everything you need to know about constructors in Java

Hey guys in this post we will discuss constructors in java with examples Overview Constructors are used to initialize the object's state. Like methods, a constructor also contains collection of…

0 Comments
May 4, 2021
Javascript

Everything you need to know about Javascript Variables

Hey guys in this post, we will discuss Javascript variables with Examples What are variables? A variable is a named storage for data. Each variable must have a unique name…

0 Comments
May 3, 2021
Javascript

Everything you need to know about Javascript Hoisting

Hey guys in this post, we will discuss about Javascript Hoisting in detail with an Example. What is Hoisting? Hoisting is Javascript's default behavior of moving declarations to the top.…

0 Comments
April 29, 2021
JPA / Hibernate / REST Services / Spring Boot / Spring MVC

Spring Boot JPA Pagination and Sorting with Example

Hey guys in this post we will discuss Data JPA Sorting and Pagination with examples in Spring Boot. We have already discussed Soring and Pagination separately, you can follow the…

0 Comments
April 25, 2021
Spring Boot / Spring MVC / Thymeleaf

Spring Boot Thymeleaf for each with Example

Hey guys in this post, we will discuss iterating list using each in Thymeleaf with an example. Overview Thymeleaf is a Java XML/XHTML/HTML5 template engine that can work both in…

0 Comments
April 21, 2021
Core Java

Most commonly used Java Math methods with Examples

Hey guys in this post, we will discuss the most commonly used Java Math methods with examples. Math Methods Following are the most commonly used java math methods that can…

0 Comments
April 20, 2021
Spring Boot / Spring MVC / Thymeleaf

Spring Boot Thymeleaf CSS JS with Example

Hey guys in this post, we will discuss adding static resources like CSS and Javascript to the Thymeleaf template engine with Spring boot. Overview Thymeleaf is a Java XML/XHTML/HTML5 template…

0 Comments
April 12, 2021
Spring Boot / Spring MVC / Thymeleaf

Spring Boot Thymeleaf with Example

Hey guys in this post, we will discuss integrating spring boot with the Thymeleaf template engine. Overview Thymeleaf is a Java XML/XHTML/HTML5 template engine that can work both in web…

0 Comments
April 11, 2021
JPA / Hibernate / REST Services / Spring Boot / Spring MVC

Spring Data JPA Sort Multiple Columns with Examples

Hey guys in this post we will discuss and implement Sorting multiple columns in Data JPA with examples. Overview Data JPA provides Sorting option out of the box. To add…

0 Comments
April 9, 2021
JPA / Hibernate / REST Services / Spring Boot / Spring MVC

Spring Data JPA Sort by Date with Example

Hey guys in this post we will discuss and implement Sorting in Data JPA with examples. Overview Data JPA provides Sorting support out of the box. To add Sorting support to…

0 Comments
April 8, 2021
Hibernate / JPA / REST Services / Spring Boot / Spring MVC

Spring Data JPA Pagination with Example

Hey guys in this post we will discuss and implement Pagination in Data JPA with examples. Overview Pagination is often helpful when we have a large dataset and we want…

0 Comments
April 7, 2021
JPA / Hibernate / REST Services / Spring Boot / Spring MVC

Spring Data JPA Query Methods In with Examples

Hey guys in this post, we will discuss the Data JPA finder method In examples Overview JPA finder methods are the most powerful methods, we can create finder methods to…

0 Comments
April 3, 2021
Hibernate / JPA / REST Services / Spring Boot / Spring MVC

Spring Data JPA Query Methods Like with Example

Hey guys in this post, we will discuss the Data JPA finder method Like examples Overview JPA finder methods are the most powerful methods, we can create finder methods to…

0 Comments
April 2, 2021
  • Go to the previous page
  • 1
  • …
  • 5
  • 6
  • 7
  • 8
  • 9
  • 10
  • 11
  • …
  • 14
  • Go to the next page
Build Real Time REST APIs with Spring Boot, JPA and MySQL

Build Real Time Web Application with Spring Boot, JPA and MySQL

Full Stack Application with React (React Hooks) and Spring Boot

Build Real Time Application with JSP and Servlets for Beginners

Most Viewed Posts

  • Java Comments Best Practices Example
  • Spring Data JPA findBy Multiple Columns with Example
  • Spring Data JPA findBy Column Name with Example
  • A Complete CRUD Application with Spring MVC and MyBatis/iBatis
  • Login Form in JavaFX with MySQL Database
  • Spring Data JPA Between Date Example
  • Spring boot @RequestMapping annotation with example
  • Angular 2 and Spring REST Simple CRUD Application
  • Spring boot @Bean annotation with example
  • Calculate AGE based on Date of birth using jQuery Calendar

Join Our Newsletter



Spring Security Tutorials

Add Spring Security to Spring application

Customize username and password in Spring security

Customize URI mapping with Spring security

Customize Spring security to permit all requests

Customize Spring security to deny all requests

Spring security configure users using inMemoryAuthentication

Spring security configure users using InMemoryUserDetailsManager

Popular Spring Boot Tutorials

Spring Data JPA + MySQL REST API Tutorial [2021 Edition]

Spring Data Rest + MySQL REST API Tutorial

Spring Boot + MongoDB REST API Tutorial [2021 Edition]

Spring Data JPA + H2 Database REST API Tutorial

Spring Boot + Hibernate + MySQL Tutorial

Spring Boot + Hibernate + MySQL  Web application Tutorial

Spring Boot and MongoDB REST API Tutorial [2019 Edition]

Spring Annotations

@PathVariable

@RequestParam

@RequestBody

@ResponseBody

@RequestMapping

@Autowire

@Bean

@ExceptionHandler

@ControllerAdvice

@Valid

@PostConstruct

@ResponseStatus

@ModelAttribute

@RequestHeader

@Controller

@RestController

@Value

Popular Tutorials

Javascript tutorial

Core java tutorial

Java 8 stream tutorial

Spring MVC tutorial

Hibernate tutorial

Spring boot tutorial [100+ Posts]

Angular 9 and Spring boot tutorial

Angular 9 + Spring boot + MySQL [Part 1]

Angular 9 + Spring boot + MySQL [Part 2]

Angular 9 + Spring boot + MySQL [Part 3]

Angular 9 + Spring boot + MySQL [Part 4]

Angular 9 + Spring boot + MySQL [Part 5]

Angular 9 + Spring boot + MySQL [Part 6]

Angular 9 + Spring boot + MySQL [Part 7]

Categories

  • Angular 10
  • Angular 2
  • Angular 9
  • AWS
  • Boostrap 4
  • Core Java
  • CRUD Applications
  • CSS
  • Design Patterns
  • DevOps
  • Docker
  • Express.js
  • Golang
  • GraphQL
  • Hibernate
  • High Charts
  • HTML
  • Java Programs
  • Java Swings
  • JavaFX
  • Javascript
  • JDBCTemplate
  • JPA
  • jQuery
  • JSF
  • JSP
  • JUnit 5
  • Linux
  • Mongoose
  • MyBatis/iBatis
  • MySQL
  • Nodejs
  • Productivity
  • React.js
  • REST Services
  • Servlets
  • SOAP Services
  • Spring Boot
  • Spring MVC
  • Spring Security
  • SQL
  • Testing
  • Thymeleaf
  • Tools
  • Uncategorized
  • Utilities

Useful Links

  • ContactOpens in a new tab
  • About MeOpens in a new tab
  • YoutubeOpens in a new tab
  • GithubOpens in a new tab
  • UdemyOpens in a new tab
  • Privacy PolicyOpens in a new tab
  • Facebook
  • Linkedin
  • Instagram
  • Youtube
  • Github
Copyright © 2018 - 2023 B2 Tech All rights reversed