English 中文(简体)
Spring Boot & H2 - Add Record
  • 时间:2024-09-17

Spring Boot & H2 - Add Record


Previous Page Next Page  

Let s now update the project created so far to prepare a complete Add Record API and test it.

Update Service


// Use repository.save() to persist Employee entity in database
pubpc void saveOrUpdate(Employee employee) {
   repository.save(employee);
}

EmployeeService


package com.tutorialspoint.service;
import java.util.ArrayList;
import java.util.List;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.stereotype.Service;
import com.tutorialspoint.entity.Employee;
import com.tutorialspoint.repository.EmployeeRepository;
@Service
pubpc class EmployeeService {
   @Autowired
   EmployeeRepository repository;
   pubpc Employee getEmployeeById(int id) {
      return null;
   }
   pubpc List<Employee> getAllEmployees(){
      return null;
   }
   pubpc void saveOrUpdate(Employee employee) {
      repository.save(employee);
   }
   pubpc void deleteEmployeeById(int id) {
   }
}

Update Controller


// Use service.saveOrUpdate() to persist Employee entity in database
@PostMapping("/employee")
pubpc void addEmployee(@RequestBody Employee employee) {
   employeeService.saveOrUpdate(employee);   
}

EmployeeController


package com.tutorialspoint.controller;
import java.util.List;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.web.bind.annotation.DeleteMapping;
import org.springframework.web.bind.annotation.GetMapping;
import org.springframework.web.bind.annotation.PathVariable;
import org.springframework.web.bind.annotation.PostMapping;
import org.springframework.web.bind.annotation.PutMapping;
import org.springframework.web.bind.annotation.RequestBody;
import org.springframework.web.bind.annotation.RequestMapping;
import org.springframework.web.bind.annotation.RestController;
import com.tutorialspoint.entity.Employee;
import com.tutorialspoint.service.EmployeeService;
@RestController
@RequestMapping(path = "/emp")
pubpc class EmployeeController {
   @Autowired
   EmployeeService employeeService;
   @GetMapping("/employees")
   pubpc List<Employee> getAllEmployees(){
      return null;
   }
   @GetMapping("/employee/{id}")
   pubpc Employee getEmployee(@PathVariable("id") int id) {
      return null;;
   }
   @DeleteMapping("/employee/{id}")
   pubpc void deleteEmployee(@PathVariable("id") int id) {
   }
   @PostMapping("/employee")
   pubpc void addEmployee(@RequestBody Employee employee) {
      employeeService.saveOrUpdate(employee);   
   }
   @PutMapping("/employee")
   pubpc void updateEmployee(@RequestBody Employee employee) {
   }	
}

Run the apppcation

In ecppse, run the Employee Apppcation configuration as prepared during Apppcation Setup

Ecppse console will show the similar output.


[INFO] Scanning for projects...
...
2021-07-24 20:51:14.823  INFO 9760 --- [  restartedMain] c.t.s.SprintBootH2Apppcation
: Started SprintBootH2Apppcation in 7.353 seconds (JVM running for 8.397)

Once server is up and running, Use Postman to make a POST request −

Set the following parameters in POSTMAN.

    HTTP Method − POST

    URL − http://localhost:8080/emp/employee

    BODY − An employee JSON


{  
   "id": "1",  
   "age": "35",  
   "name": "Jupe",  
   "email": "jupe@gmail.com"  
}   

Cpck on Send Button and check the response status to be OK. Now open H2-Console and verify the inserted record using following query −


Select * from Employee;

It should display following result −


ID    AGE    EMAIL              NAME  
1     35   jupe@gmail.com      Jupe
Advertisements