B2 Tech

Web Dev Snippets

  • Facebook
  • Twitter
  • Google Plus
  • Home
  • Java
    • Core Java
    • Core Java Programs
    • Java Swings
    • JavaFX
  • Web Technologies
    • Angular 10
    • Angular 2
    • Angular 9
    • Boostrap 4
    • CSS
    • Express.js
    • High Charts
    • HTML
    • Javascript
    • Javascript Programs
    • jQuery
    • Mongoose
    • Nodejs
    • Typescript
  • Full Stack Applications
    • CRUD Applications
  • Advance Java/J2EE
    • JSP
    • Servlets
    • JSF
    • Thymeleaf
    • Spring MVC
    • Spring Boot
    • Spring Security
    • JPA
    • Hibernate
    • Struts
    • MyBatis/iBatis
  • Interview Programs
  • Web Services
    • REST Services
    • SOAP Services
  • Testing
  • About
  • Contact

Category - Web Services

  • CRUD Applications
  • Hibernate
  • JPA
  • REST Services
  • Spring Boot
  • Spring MVC
  • Testing

Spring Boot REST API Testing using JUnit

1 day ago
by Bushan Sirgur
6 min read
Add Comment

Hey guys in this post, we will write JUnit test cases for Spring boot REST API. We will write test cases for database operations like Create, Read, Update and Delete. Development process Following are the development steps to...

Continue reading

  • CRUD Applications
  • Hibernate
  • JPA
  • REST Services
  • Spring Boot
  • Spring MVC

Spring Boot, PostgreSQL, JPA, Hibernate RESTful CRUD API Example

1 week ago
by Bushan Sirgur
8 min read
Add Comment

Hey guys in this post, we will learn about creating REST API with Spring Boot, PostgreSQL, JPA, and Hibernate. We will also perform the basic CRUD (Create, Read, Update, Delete) operations. Spring framework is one of the most...

Continue reading

  • REST Services
  • Spring Boot
  • Spring MVC

Spring boot @PathVariable annotation Example

3 weeks ago
by Bushan Sirgur
4 min read
Add Comment

Hey guys in this post we will discuss about the Spring boot @PathVariable annotation and their example in detail. Overview Spring boot @PathVariable annotation used on a method argument to bind it to the value of a URI template...

Continue reading

  • Hibernate
  • JPA
  • REST Services
  • Spring Boot
  • Spring MVC

Spring Boot, Hibernate, JPA and H2 Database CRUD REST API Example

3 weeks ago
by Bushan Sirgur
9 min read
Add Comment

Hey guys in this post, we will learn about creating REST API with Spring Boot, H2 Database, JPA, and Hibernate. We will also perform the basic CRUD (Create, Read, Update, Delete) operations. Spring framework is one of the most...

Continue reading

  • CRUD Applications
  • Hibernate
  • JPA
  • REST Services
  • Spring Boot
  • Spring MVC

Spring Boot, MySQL, JPA, Hibernate Restful CRUD API Tutorial [2021]

3 weeks ago
by Bushan Sirgur
9 min read
Add Comment

Hey guys in this post, we will learn about creating REST API with Spring Boot, MySQL, JPA, and Hibernate. We will also perform the basic CRUD (Create, Read, Update, Delete) operations. Spring framework is one of the most popular...

Continue reading

  • CRUD Applications
  • JPA
  • REST Services
  • Spring Boot

Spring Data Rest with MySQL database [2021]

1 month ago
by Bushan Sirgur
7 min read
Add Comment

Hey guys in this post, we will discuss how to create spring boot REST API using Spring Data Rest module and we will connect it to the MySQL database. We will create a simple employee management system, and it has the following...

Continue reading

  • REST Services
  • SOAP Services

HTTP Status codes with examples

1 month ago
by Bushan Sirgur
6 min read
1 Comment

Hey guys in this post we will discuss the most commonly used HTTP status codes with completed examples. HTTP response status codes indicate whether a specific HTTP request has been successfully completed. HTTP status codes are 3...

Continue reading

  • Angular 10
  • REST Services

Angular 10 HTTP GET Request Example

1 month ago
by Bushan Sirgur
4 min read
Add Comment

Hey guys in this post we will discuss how to make HTTP GET requests in Angular 10. We will use Fake REST API to make the GET requests. Here is the API endpoint: This API will give the list of users in JSON format. Below is the...

Continue reading

  • CRUD Applications
  • REST Services
  • Spring Boot

Spring boot and MongoDB REST API CRUD Tutorial [Updated 2021]

3 months ago
by Bushan Sirgur
8 min read
Add Comment

Hey, guys in this, we will learn connecting the spring boot REST API that connects to the MongoDB database and we will perform the basic database operations like Create, Read, Update and Delete. Development steps Following are...

Continue reading

  • CRUD Applications
  • Express.js
  • Mongoose
  • Nodejs
  • REST Services

Building REST API with Node.js, Express and MongoDB using Async and Await

5 months ago
by Bushan Sirgur
8 min read
Add Comment

Hey guys, in this post, we will be creating an end to end RESTful CRUD API with Node.js, Express, Mongoose, and MongoDB. Yes, we will use Mongoose for communicating with MongoDB. Express is a light-weight web application...

Continue reading

  • CRUD Applications
  • Express.js
  • Mongoose
  • Nodejs
  • REST Services

Building Restful CRUD API with Node.js, Express, Mongoose and MongoDB

5 months ago
by Bushan Sirgur
8 min read
Add Comment

Hey guys, in this post, we will be creating an end to end RESTful CRUD API with Node.js, Express, Mongoose, and MongoDB. Yes, we will use Mongoose for communicating with MongoDB. Express is a light-weight web application...

Continue reading

  • Express.js
  • Mongoose
  • Nodejs
  • REST Services

NodeJS, Express, Mongoose and MongoDB RESTful Web Service – DELETE Request

5 months ago
by Bushan Sirgur
1 min read
Add Comment

Hey guys, in the previous post we discussed about updating the document with HTTP PATCH request. In this post, we will discuss about deleting document with HTTP DELETE request. let’s begin In order to delete the document...

Continue reading

  • Express.js
  • Mongoose
  • Nodejs
  • REST Services

NodeJS, Express, Mongoose and MongoDB RESTful Web Service – PATCH Request

5 months ago
by Bushan Sirgur
2 min read
Add Comment

Hey guys, in our previous post we discussed about retrieving the documents from mongodb using GET request. so in this post we will discuss that updating the document using PATCH request. let’s begin… To update the...

Continue reading

  • Express.js
  • Mongoose
  • Nodejs
  • REST Services

NodeJS, Express, Mongoose and MongoDB RESTful Web Service – POST Request [Part 2]

5 months ago
by Bushan Sirgur
2 min read
Add Comment

Hey guys, welcome back to my blog. In my previous post we discussed about saving the document to mongodb database using save() method. But there are 2 more methods available to for saving the documents which create() and...

Continue reading

  • Express.js
  • Mongoose
  • Nodejs
  • REST Services

NodeJS, Express, Mongoose and MongoDB RESTful Web Service – GET Request

7 months ago
by Bushan Sirgur
3 min read
Add Comment

Hey in this article, we will discuss how to make HTTP GET requests using NodeJS and Express. In the previous post, we discussed the HTTP POST request, where we saved the data to the database. So we will use the same example which...

Continue reading

  • Express.js
  • Mongoose
  • Nodejs
  • REST Services

NodeJS, Express, Mongoose and MongoDB RESTful Web Service – POST Request [Part 1]

7 months ago
by Bushan Sirgur
7 min read
2 Comments

Hey guys, recently I get a chance to explore Nodejs and Express, in my opinion, I think NodeJS and Express is a great option for building restful web services because its easy, fast and you don’t have to learn a new...

Continue reading

  • Angular 9
  • Boostrap 4
  • CRUD Applications
  • CSS
  • HTML
  • JPA
  • REST Services
  • Spring Boot

Angular 9 and Spring Boot CRUD Tutorial – Feature 4 Delete expense details

7 months ago
by Bushan Sirgur
7 min read
Add Comment

Hey everyone, in the previous post we discussed updating the expense details, and in this post, we will discuss deleting an expense. we can delete expense from two different places, one is in the list expense page, where each...

Continue reading

  • Angular 9
  • Boostrap 4
  • CRUD Applications
  • CSS
  • HTML
  • JPA
  • REST Services
  • Spring Boot

Angular 9 and Spring Boot CRUD Tutorial – Feature 3 Update expense details

7 months ago
by Bushan Sirgur
6 min read
Add Comment

Hey in the previous post we covered saving the expense details to the database, in this post we will cover updating the expense details. We will continue with the same example which we created in the previous post. Let’s...

Continue reading

  • Angular 9
  • Boostrap 4
  • CRUD Applications
  • CSS
  • HTML
  • JPA
  • REST Services
  • Spring Boot

Angular 9 and Spring Boot CRUD Tutorial – Feature 2 Save the expense to database

7 months ago
by Bushan Sirgur
5 min read
Add Comment

Hey in this post, we will continue with the application which we created in our previous post. In this post, we will cover saving the expense record to the database. let’s begin… We will cover the following topics...

Continue reading

  • Angular 9
  • Boostrap 4
  • CRUD Applications
  • CSS
  • HTML
  • JPA
  • REST Services
  • Spring Boot

Angular 9 and Spring Boot CRUD Tutorial – Feature 1 Display list of records in browser

7 months ago
by Bushan Sirgur
10 min read
Add Comment

Hey in this post we will quickly create spring boot and angular 9 application and create rest endpoint to retrieve the list of records. We will also make HTTP GET requests from the angular application to the rest endpoint which...

Continue reading

  • Angular 9
  • Boostrap 4
  • CRUD Applications
  • CSS
  • HTML
  • JPA
  • REST Services
  • Spring Boot

Angular 9 and Spring Boot CRUD Tutorial – Introduction and Setup

7 months ago
by Bushan Sirgur
3 min read
1 Comment

Hey in this post, we will develop a full-stack web application using Angular 9 and Spring boot. We will connect this application to the MySQL database and perform the basic database operations like Create, Read, Update, and...

Continue reading

  • Angular 2
  • REST Services
  • Spring MVC

Spring MVC and Angular 2 Video Course

January 12, 2020
by Bushan Sirgur
1 min read
4 Comments

Related posts: Spring Boot, Hibernate and MySQL REST API Video Course Spring Boot and JPA Video Course Angular 2 and Spring REST Simple CRUD Application Spring Boot, Hibernate and MySQL Web Application Video Course JavaFX and...

Continue reading

  • CRUD Applications
  • Hibernate
  • REST Services
  • Spring Boot

Spring Boot, Hibernate and MySQL REST API Video Course

January 12, 2020
by Bushan Sirgur
1 min read
Add Comment

Related posts: Creating REST API using Spring Boot + Hibernate + MySQL Spring Boot and MongoDB REST API CRUD Tutorial Spring Boot, Hibernate and MySQL Web Application Video Course Complete CRUD Application with Spring Boot...

Continue reading

  • CRUD Applications
  • REST Services
  • Spring Boot

Spring Boot and MongoDB REST API CRUD Tutorial

January 11, 2020
by Bushan Sirgur
8 min read
Add Comment

In this tutorial, we will learn creating a REST API using Spring Boot and MongoDB. We will perform the basic database operations like Create, Read, Update and Delete. So we will create a backend application using Spring boot and...

Continue reading

  • CRUD Applications
  • Hibernate
  • REST Services
  • Spring Boot

Creating REST API using Spring Boot + Hibernate + MySQL

January 6, 2019
by Bushan Sirgur
8 min read
Add Comment

Hey guys, Bushan here, Welcome back to B2 Tech. Today in this article we are going discuss how we can create REST API using Spring boot, hibernate and MySQL. We are going to create End-to-End REST API which is connected to...

Continue reading

  • jQuery
  • REST Services

Update data[PUT] using Java Web Service and jQuery Ajax

July 17, 2018
by Bushan Sirgur
4 min read
1 Comment

Hi guys, Bushan here, Welcome back to B2 Tech! Today in this article I will show you how to make PUT request using Java web service and jQuery Ajax, so let’s get started. In our previous blog post, we have discussed the...

Continue reading

  • jQuery
  • REST Services

Delete data [DELETE] using Java Web Service and jQuery Ajax

June 30, 2018
by Bushan Sirgur
4 min read
Add Comment

Hey guys, Bushan here, welcome back to B2 Tech! Today in this article I will show you how to make DELETE request/Delete data using Spring REST and jQuery Ajax, so let’s get started. I have already created the required...

Continue reading

  • jQuery
  • REST Services

Save data [POST] using Java Web Services and jQuery Ajax

June 23, 2018
by Bushan Sirgur
5 min read
2 Comments

Hi guys, Bushan here, welcome back to B2 Tech! Today in this article I will teach you how to make POST request using jQuery Ajax, so let’s get started! To make POST request, I have already created a Java web service, I will...

Continue reading

  • jQuery
  • REST Services

Displaying Database Records in jQuery DataTable

June 21, 2018
by Bushan Sirgur
5 min read
Add Comment

Hey guys, Bushan here, welcome back to B2 Tech! Today in this article, I will show you how to use jQuery Datatable and how to display the database records in jQuery Datatable so let’s get started! If we are creating any...

Continue reading

  • Angular 2
  • CRUD Applications
  • REST Services
  • Spring MVC

Angular 2 and Spring REST Simple CRUD Application

June 2, 2018
by Bushan Sirgur
22 min read
35 Comments

Angular 2 is one of the Most Popular Front End Web Framework on the internet, Spring MVC is also one of the Most Popular Application Framework on the internet, So today in this article, let’s combine/integrate these two...

Continue reading

About Author

View all posts

Support me


Love my tutorials? Please support me by donating:

Newsletter



Recent Posts

  • Spring Boot REST API Testing using JUnit February 26, 2021
  • Spring boot @Bean annotation with example February 25, 2021
  • Spring boot @Autowire annotation with example February 23, 2021
  • Top 20 commonly used Javascript array methods with examples February 20, 2021
  • Spring boot @RequestMapping annotation with example February 18, 2021
  • Spring Boot, PostgreSQL, JPA, Hibernate RESTful CRUD API Example February 17, 2021
  • Spring boot @ResponseBody annotation with example February 16, 2021
  • Spring boot @RequestBody annotation example February 14, 2021
  • HTML Basic Tags Explained with Examples February 10, 2021
  • Spring boot @RequestParam annotation Example February 8, 2021

Featured Posts

  • Spring Boot REST API Testing using JUnit
  • Spring boot @Bean annotation with example
  • Spring boot @Autowire annotation with example
  • Top 20 commonly used Javascript array methods with examples
  • Spring boot @RequestMapping annotation with example

Most Viewed Posts

  • Angular 2 and Spring REST Simple CRUD Application (16,464)
  • Login Form in JavaFX with MySQL Database (15,626)
  • A Complete CRUD Application with Spring MVC and MyBatis/iBatis (14,006)
  • Calculate AGE based on Date of birth using jQuery Calendar (11,159)
  • Complete CRUD Application in Spring MVC and Hibernate [XML Configuration] (10,819)

Categories

  • Angular 10 (2)
  • Angular 2 (2)
  • Angular 9 (7)
  • Boostrap 4 (9)
  • Core Java (13)
  • Core Java Programs (33)
  • CRUD Applications (33)
  • CSS (12)
  • Express.js (7)
  • Hibernate (12)
  • High Charts (3)
  • HTML (13)
  • Interview Programs (33)
  • Java Swings (4)
  • JavaFX (2)
  • Javascript (11)
  • Javascript Programs (20)
  • JPA (21)
  • jQuery (7)
  • JSP (16)
  • Mongoose (7)
  • MyBatis/iBatis (2)
  • Nodejs (7)
  • REST Services (30)
  • Servlets (2)
  • SOAP Services (1)
  • Spring Boot (40)
  • Spring MVC (21)
  • Testing (1)
  • Uncategorized (2)
Copyright © 2021. Created by Bushan Sirgur. Powered by B2 Tech.
  • Facebook
  • Linkedin
  • Instagram
  • Youtube
  • Github
  • Home
  • Java
    • Core Java
    • Core Java Programs
    • Java Swings
    • JavaFX
  • Web Technologies
    • Angular 10
    • Angular 2
    • Angular 9
    • Boostrap 4
    • CSS
    • Express.js
    • High Charts
    • HTML
    • Javascript
    • Javascript Programs
    • jQuery
    • Mongoose
    • Nodejs
    • Typescript
  • Full Stack Applications
    • CRUD Applications
  • Advance Java/J2EE
    • JSP
    • Servlets
    • JSF
    • Thymeleaf
    • Spring MVC
    • Spring Boot
    • Spring Security
    • JPA
    • Hibernate
    • Struts
    • MyBatis/iBatis
  • Interview Programs
  • Web Services
    • REST Services
    • SOAP Services
  • Testing
  • About
  • Contact
  • Facebook
  • Twitter
  • Google Plus