Created
August 20, 2023 14:56
-
-
Save azizkale/6c565413a8ef7cb51f715024dbcfc533 to your computer and use it in GitHub Desktop.
the article - How to implement Hibernate in Spring Boot
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
package com.kale.hibernatetutorial.controller; | |
import com.kale.hibernatetutorial.exception.EmployeeNotFoundException; | |
import com.kale.hibernatetutorial.exception.InternalServerException; | |
import com.kale.hibernatetutorial.model.Employee; | |
import com.kale.hibernatetutorial.service.EmployeeService; | |
import org.springframework.beans.factory.annotation.Autowired; | |
import org.springframework.http.HttpStatus; | |
import org.springframework.http.ResponseEntity; | |
import org.springframework.web.bind.annotation.*; | |
import org.springframework.web.servlet.support.ServletUriComponentsBuilder; | |
import java.net.URI; | |
import java.util.List; | |
@RestController | |
@RequestMapping("/api") | |
public class EmployeeController { | |
@Autowired | |
private EmployeeService employeeService; | |
@GetMapping("/employee") | |
public ResponseEntity<List<Employee>> get(){ | |
List<Employee> employees = employeeService.findAll(); | |
return ResponseEntity.ok(employees); | |
} | |
@GetMapping("/employee/{id}") | |
public ResponseEntity<Employee> find(@PathVariable int id){ | |
try { | |
Employee employee = employeeService.findById(id); | |
return ResponseEntity.ok(employee); | |
} | |
catch (EmployeeNotFoundException ex){ | |
return ResponseEntity.notFound().build(); | |
} | |
} | |
@PostMapping("/employee") | |
public ResponseEntity<Employee> create(@RequestBody Employee employee){ | |
try { | |
employeeService.create(employee); | |
Integer id = employee.getId(); | |
URI location = ServletUriComponentsBuilder.fromCurrentRequest().path("/{id}").buildAndExpand(id).toUri(); | |
return ResponseEntity.created(location).build(); | |
} catch (InternalServerException ex) { | |
return ResponseEntity.status(HttpStatus.INTERNAL_SERVER_ERROR).build(); | |
} | |
} | |
@PutMapping("/employee") | |
public ResponseEntity<?> update(@RequestBody Employee employee){ | |
try{ | |
employeeService.update(employee); | |
return ResponseEntity.ok(employee); | |
} catch(EmployeeNotFoundException ex){ | |
return ResponseEntity.notFound().build(); | |
} catch(Exception ex){ | |
return ResponseEntity.status(HttpStatus.INTERNAL_SERVER_ERROR).build(); | |
} | |
} | |
@DeleteMapping("/employee/{id}") | |
public ResponseEntity<?> delete(@PathVariable int id){ | |
try{ | |
employeeService.delete(id); | |
return ResponseEntity.ok().build(); | |
}catch (EmployeeNotFoundException ex){ | |
return ResponseEntity.notFound().build(); | |
}catch (InternalServerException ex){ | |
return ResponseEntity.status(HttpStatus.INTERNAL_SERVER_ERROR).build(); | |
} | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment