본문 바로가기
728x90
반응형

Programming150

[Spring Boot] RESTful Service 강의 정리 (17) - JPA를 이용한 사용자 추가와 삭제 - POST/DELETE HTTP Method [Spring Boot] RESTful Service 강의 정리 (16) - JPA를 이용한 개별 사용자 목록 조회 GET HTTP Method [Spring Boot] RESTful Service 강의 정리 (15) - JPA Service 구현을 위한 Controller, Repository 생성 [Spring Boot] RESTful Service 강의 정리 (14) - Spring Data JPA를 이용한 Entity 설정과 초기 데이터.. prinha.tistory.com 1. HTTP DELETE Method @DeleteMapping("/users/{id}") public void deleteUser(@PathVariable int id){ User user = service.deleteBy.. 2020. 8. 27.
[Spring Boot] RESTful Service 강의 정리 (16) - JPA를 이용한 개별 사용자 목록 조회 GET HTTP Method [Spring Boot] RESTful Service 강의 정리 (15) - JPA Service 구현을 위한 Controller, Repository 생성 [Spring Boot] RESTful Service 강의 정리 (14) - Spring Data JPA를 이용한 Entity 설정과 초기 데이터 생성 [Spring Boot] RESTful Service 강의 정리 (13) - JPA 사용을 위한 Dependency, h2 DataBase 추가와.. prinha.tistory.com primary key 값을 이용해서 검색 -> findAllById package com.example.restfulwebservice.user; import org.springframework.beans.factory.. 2020. 8. 27.
[Spring Boot] RESTful Service 강의 정리 (15) - JPA Service 구현을 위한 Controller, Repository 생성 [Spring Boot] RESTful Service 강의 정리 (14) - Spring Data JPA를 이용한 Entity 설정과 초기 데이터 생성 [Spring Boot] RESTful Service 강의 정리 (13) - JPA 사용을 위한 Dependency, h2 DataBase 추가와 설정 [Spring Boot] RESTful Service 강의 정리 (12) - JPA(Java Persistence API)와 ORM, Hibernate [Spring B.. prinha.tistory.com Updating GET methods on User Resource to use JPA Spring Data JPA는 일반적인 JPA 기능과는 달리 Entity를 제어하기 위해서 JPA Manager를.. 2020. 8. 27.
[Spring Boot] RESTful Service 강의 정리 (14) - Spring Data JPA를 이용한 Entity 설정과 초기 데이터 생성 [Spring Boot] RESTful Service 강의 정리 (13) - JPA 사용을 위한 Dependency, h2 DataBase 추가와 설정 [Spring Boot] RESTful Service 강의 정리 (12) - JPA(Java Persistence API)와 ORM, Hibernate [Spring Boot] RESTful Service 강의 정리 (11) - Spring Security Configuration 클래스를 이용한 사용자 인증 처.. prinha.tistory.com Creating User Entity and some test data 1) User 클래스(domain)에 데이터베이스 연동 어노테이션 추가 -> Project 실행 시에 데이터베이스 자동 생성 @Entit.. 2020. 8. 25.
[Spring Boot] RESTful Service 강의 정리 (13) - JPA 사용을 위한 Dependency, h2 DataBase 추가와 설정 [Spring Boot] RESTful Service 강의 정리 (12) - JPA(Java Persistence API)와 ORM, Hibernate [Spring Boot] RESTful Service 강의 정리 (11) - Spring Security Configuration 클래스를 이용한 사용자 인증 처리 [Spring Boot] RESTful Service 강의 정리 (10) - Spring Security 자동으로 생성되는 passwor.. prinha.tistory.com H2DB H2DB는 자바 기반의 오픈소스 관계형 데이터 베이스 관리 시스템(RDBMS )입니다. H2DB는 서버(Server) 모드와 임베디드(Embedded) 모드의 인메모리 DB 기능을 지원합니다. 물론 디스크 기반 .. 2020. 8. 25.
[Spring Boot] RESTful Service 강의 정리 (12) - JPA(Java Persistence API)와 ORM, Hibernate [Spring Boot] RESTful Service 강의 정리 (11) - Spring Security Configuration 클래스를 이용한 사용자 인증 처리 [Spring Boot] RESTful Service 강의 정리 (10) - Spring Security 자동으로 생성되는 password로 인증처리 [Spring Boot] RESTful Service 강의 정리 (9) - HAL Browser를 이용한 HATEOAS 기능 구현 [Spring Boot.. prinha.tistory.com 출처 및 참고 : https://victorydntmd.tistory.com/195 1) JPA(Java Persistence API) 자바 ORM 기술에 대한 API 표준 명세를 의미한다. JPA는 자바 .. 2020. 8. 25.
[Spring Boot] RESTful Service 강의 정리 (11) - Spring Security Configuration 클래스를 이용한 사용자 인증 처리 [Spring Boot] RESTful Service 강의 정리 (10) - Spring Security 자동으로 생성되는 password로 인증처리 [Spring Boot] RESTful Service 강의 정리 (9) - HAL Browser를 이용한 HATEOAS 기능 구현 [Spring Boot] RESTful Service 강의 정리 (8) - Monitoring APIs with Spring Boot Actuator [Spring Boot] RESTful Ser.. prinha.tistory.com Implementing Basic Authentication with Spring Security -> 개발자가 지정한 ID와 Password로 간단한 인증처리 구현 방법 두가지 1. applica.. 2020. 8. 25.
[Spring Boot] RESTful Service 강의 정리 (10) - Spring Security 자동으로 생성되는 password로 인증처리 [Spring Boot] RESTful Service 강의 정리 (9) - HAL Browser를 이용한 HATEOAS 기능 구현 [Spring Boot] RESTful Service 강의 정리 (8) - Monitoring APIs with Spring Boot Actuator [Spring Boot] RESTful Service 강의 정리 (7) - Configuring Auto Generation of Swagger Documentation / 개발자 도.. prinha.tistory.com Implementing Basic Authentication with Spring Security -> 자동으로 생성되는 password로 간단한 인증처리 구현 1) pom.xml add dependency o.. 2020. 8. 25.
[Spring Boot] RESTful Service 강의 정리 (9) - HAL Browser를 이용한 HATEOAS 기능 구현 [Spring Boot] RESTful Service 강의 정리 (8) - Monitoring APIs with Spring Boot Actuator [Spring Boot] RESTful Service 강의 정리 (7) - Configuring Auto Generation of Swagger Documentation / 개발자 도움말 페 [Spring Boot] RESTful Service 강의 정리 (6) - Implementing HATEOAS / level3단계.. prinha.tistory.com "HAL is a simple format that gives a consistent and easy way to hyperlink between resources in your API." HAL(Hy.. 2020. 8. 25.
[Spring Boot] RESTful Service 강의 정리 (8) - Monitoring APIs with Spring Boot Actuator [Spring Boot] RESTful Service 강의 정리 (7) - Configuring Auto Generation of Swagger Documentation / 개발자 도움말 페 [Spring Boot] RESTful Service 강의 정리 (6) - Implementing HATEOAS / level3단계의 REST API 구현 [Spring Boot] RESTful Service 강의 정리 (5) - REST API Version 관리(URI, Request Parameter, Header, Mi.. prinha.tistory.com REST API Monitoring을 위한 Actuator 어플리케이션의 상태를 종합적으로 정리하여 제공해주는 모듈로 Spring Boot Applicat.. 2020. 8. 25.
[Spring Boot] RESTful Service 강의 정리 (7) - Configuring Auto Generation of Swagger Documentation / 개발자 도움말 페이지 생성 [Spring Boot] RESTful Service 강의 정리 (6) - Implementing HATEOAS / level3단계의 REST API 구현 [Spring Boot] RESTful Service 강의 정리 (5) - REST API Version 관리(URI, Request Parameter, Header, Mime Type 이용) [Spring Boot] RESTful Service 강의 정리 (4) - Response 데이터 제어를 위한 Filterin.. prinha.tistory.com Swagger Spring REST API Documentation - 개발자 도움말 페이지 생성 1. Swagger의 간단한 구현 방법 1) pom.xml -> add dependencies io... 2020. 8. 25.
[Spring Boot] RESTful Service 강의 정리 (6) - Implementing HATEOAS / level3단계의 REST API 구현 [Spring Boot] RESTful Service 강의 정리 (5) - REST API Version 관리(URI, Request Parameter, Header, Mime Type 이용) [Spring Boot] RESTful Service 강의 정리 (4) - Response 데이터 제어를 위한 Filtering / 사용자 조회 예제 [Spring Boot] RESTful Service 강의 정리 (3) - Response 데이터 형식 변환(XML format) [Spring Boo.. prinha.tistory.com HATEOAS (Hypermedia As the Enging Of Application State) 현재 리소스와 연관된(호출 가능한) 자원 상태 정보를 제공 -> 결국 하이퍼미디.. 2020. 8. 25.
728x90
반응형